mirror of
https://github.com/tiyn/dotfiles.git
synced 2026-03-28 10:24:47 +01:00
NVIM: Improved structure and improved lazy loading
This commit is contained in:
14
.config/nvim/lua/plugins/image.lua
Normal file
14
.config/nvim/lua/plugins/image.lua
Normal file
@@ -0,0 +1,14 @@
|
||||
return {
|
||||
-- display images inside neovim
|
||||
"3rd/image.nvim",
|
||||
lazy = true, -- load as dependency
|
||||
opts = {
|
||||
backend = "ueberzug",
|
||||
max_width = 100,
|
||||
max_height = 12,
|
||||
max_height_window_percentage = math.huge,
|
||||
max_width_window_percentage = math.huge,
|
||||
window_overlap_clear_enabled = true,
|
||||
window_overlap_clear_ft_ignore = { "cmp_menu", "cmp_docs", "" },
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user