dotfiles/.config/nvim/lua/plugins/bigfile.lua
Sergio Laín 980701768c
feat(nvim): bigfile and lsp-timeout plugins added
helping for those beffy files
2023-10-16 13:25:54 +02:00

16 lines
432 B
Lua

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