SoloVim/lua/plugins/bigfile.lua
2024-03-09 14:57:04 +02:00

19 lines
434 B
Lua

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