Nvim: add new plugins

This commit is contained in:
Robert Kmieć
2024-02-29 23:25:41 +01:00
parent 05e8624509
commit 4bd5c09035
19 changed files with 234 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
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",
},
}
}