🐛 fix(nvim): image extra
This commit is contained in:
parent
b94ddd01e7
commit
1d3ceee165
2 changed files with 11 additions and 7 deletions
|
@ -7,9 +7,6 @@ if not vim.loop.fs_stat(lazypath) then
|
||||||
end
|
end
|
||||||
vim.opt.rtp:prepend(vim.env.LAZY or lazypath)
|
vim.opt.rtp:prepend(vim.env.LAZY or lazypath)
|
||||||
|
|
||||||
package.path = package.path .. ";" .. vim.fn.expand("$HOME") .. "/.luarocks/share/lua/5.1/?/init.lua;"
|
|
||||||
package.path = package.path .. ";" .. vim.fn.expand("$HOME") .. "/.luarocks/share/lua/5.1/?.lua;"
|
|
||||||
|
|
||||||
require("lazy").setup({
|
require("lazy").setup({
|
||||||
spec = {
|
spec = {
|
||||||
-- add LazyVim and import its plugins
|
-- add LazyVim and import its plugins
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
package.path = package.path .. ";" .. vim.fn.expand("$HOME") .. "/.luarocks/share/lua/5.1/?/init.lua;"
|
||||||
|
package.path = package.path .. ";" .. vim.fn.expand("$HOME") .. "/.luarocks/share/lua/5.1/?.lua;"
|
||||||
|
|
||||||
return {
|
return {
|
||||||
{
|
{
|
||||||
"edluffy/hologram.nvim", -- TODO: Need to investigate this
|
"edluffy/hologram.nvim", -- TODO: Need to investigate this
|
||||||
|
@ -8,7 +11,7 @@ return {
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"3rd/image.nvim",
|
"3rd/image.nvim",
|
||||||
event = "VeryLazy",
|
event = "LazyFile",
|
||||||
dependencies = { "nvim-treesitter/nvim-treesitter" },
|
dependencies = { "nvim-treesitter/nvim-treesitter" },
|
||||||
opts = {
|
opts = {
|
||||||
backend = "kitty",
|
backend = "kitty",
|
||||||
|
@ -17,14 +20,14 @@ return {
|
||||||
enabled = true,
|
enabled = true,
|
||||||
clear_in_insert_mode = false,
|
clear_in_insert_mode = false,
|
||||||
download_remote_images = true,
|
download_remote_images = true,
|
||||||
only_render_image_at_cursor = false,
|
only_render_image_at_cursor = true,
|
||||||
filetypes = { "markdown", "vimwiki" }, -- markdown extensions (ie. quarto) can go here
|
filetypes = { "markdown", "vimwiki" }, -- markdown extensions (ie. quarto) can go here
|
||||||
},
|
},
|
||||||
neorg = {
|
neorg = {
|
||||||
enabled = true,
|
enabled = true,
|
||||||
clear_in_insert_mode = false,
|
clear_in_insert_mode = false,
|
||||||
download_remote_images = true,
|
download_remote_images = true,
|
||||||
only_render_image_at_cursor = false,
|
only_render_image_at_cursor = true,
|
||||||
filetypes = { "norg" },
|
filetypes = { "norg" },
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
@ -32,7 +35,11 @@ return {
|
||||||
max_height = nil,
|
max_height = nil,
|
||||||
max_width_window_percentage = nil,
|
max_width_window_percentage = nil,
|
||||||
max_height_window_percentage = 50,
|
max_height_window_percentage = 50,
|
||||||
kitty_method = "normal",
|
window_overlap_clear_enabled = true, -- toggles images when windows are overlapped
|
||||||
|
window_overlap_clear_ft_ignore = { "cmp_menu", "cmp_docs", "" },
|
||||||
|
editor_only_render_when_focused = true, -- auto show/hide images when the editor gains/looses focus
|
||||||
|
tmux_show_only_in_active_window = true, -- auto show/hide images in the correct Tmux window (needs visual-activity off)
|
||||||
|
hijack_file_patterns = { "*.png", "*.jpg", "*.jpeg", "*.gif", "*.webp" }, -- render image files as images when opened
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue