Files
dotfiles/vim/.vim/lua/plugins/bigfile.lua
Christian Nieves 22d681a3d2 bigfile
2024-11-25 19:19:16 +00:00

15 lines
397 B
Lua

require("bigfile").setup {
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",
},
}