Files
dotfiles/vim/.vim/lua/plugins/bigfile.lua
Christian Nieves b296094f42 derp
2024-11-25 19:27:56 +00:00

18 lines
456 B
Lua

return {
"LunarVim/bigfile.nvim",
opts = {
filesize = 2, -- 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",
"matchparen",
"vimopts",
"filetype",
},
}
}