Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions dot_config/chezmoi/nvim_packages
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
lua-magick
1 change: 1 addition & 0 deletions dot_config/chezmoi/package_list
Original file line number Diff line number Diff line change
Expand Up @@ -311,6 +311,7 @@ pkgconf
plzip
pnpm
pomsky
poppler
prettier
prql-compiler
procs
Expand Down
10 changes: 10 additions & 0 deletions dot_config/nvim/lua/plugins/image.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
return {
"3rd/image.nvim",
build = false,
opts = function(_, opts)
setup = {
backend = "ueberzugpp",
processor = "magick_cli"
}
end
}
12 changes: 12 additions & 0 deletions dot_config/nvim/lua/plugins/jupytext.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
return {
"GCBallesteros/jupytext.nvim",
config = function()
require("jupytext").setup({
style = "markdown",
output_extension = "md",
force_ft = "markdown",
})
end,
-- Depending on your nvim distro or config you may need to make the loading not lazy
lazy=false,
}
8 changes: 4 additions & 4 deletions dot_config/nvim/lua/plugins/plugins.lua
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ return {
{ "kylechui/nvim-surround" },
{ "onsails/lspkind.nvim" },
-- 'andersevenrud/cmp-tmux',
-- 'numToStr/Comment.nvim',
-- 'nvim-tree/nvim-tree.lua',
{ "kevinhwang91/rnvimr" },
-- 'stevearc/resession.nvim',
Expand All @@ -26,17 +25,18 @@ return {
{ "chrisbra/NrrwRgn" },
{ "kevinhwang91/promise-async" },
--'max397574/better-escape.nvim',
-- { "phaazon/hop.nvim" },
--'SmiteshP/nvim-navbuddy'
{ "Vigemus/iron.nvim" },
{ "akinsho/toggleterm.nvim" },
{ "folke/flash.nvim" },
-- "hrsh7th/cmp-vsnip",
-- "hrsh7th/vim-vsnip",
--'s1n7ax/nvim-window-picker',
--'mrjones2014/smart-splits.nvim'
{ "WhoIsSethDaniel/toggle-lsp-diagnostics.nvim" },
{ "christoomey/vim-system-copy" },
{ "ojroques/vim-oscyank" },
{ "smoka7/multicursors.nvim" },
{ "GCBallesteros/NotebookNavigator.nvim" },
{ "GCBallesteros/jupytext.nvim" },
{ "benlubas/molten-nvim" },
{ "3rd/image.nvim"}
}
4 changes: 2 additions & 2 deletions dot_config/ranger/rc.conf
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ set vcs_backend_hg disabled
set vcs_backend_bzr disabled

# Use one of the supported image preview protocols
set preview_images false
set preview_images true

# Set the preview image method. Supported methods:
#
Expand All @@ -87,7 +87,7 @@ set preview_images false
# * urxvt-full:
# The same as urxvt but utilizing not only the preview pane but the
# whole terminal window.
set preview_images_method w3m
set preview_images_method iterm2

# Use a unicode "..." character to mark cut-off filenames?
set unicode_ellipsis false
Expand Down