dotfiles/.config/nvim/lua/plugins/bigfile.lua
2023-10-19 13:24:12 +02:00

17 lines
450 B
Lua

return {
"LunarVim/bigfile.nvim",
event = "VeryLazy",
opts = {
filesize = 1, -- size of the file in MiB, the plugin round file sizes to the closest MiB
pattern = { "*" }, -- autocmd pattern or function see <### Overriding the detection of big files>
features = { -- features to disable
"indent_blankline",
"illuminate",
"lsp",
"treesitter",
"syntax",
"vimopts",
"matchparen",
},
},
}