first commit
This commit is contained in:
commit
15e643aa8e
41 changed files with 1623 additions and 0 deletions
12
lua/plugins/bigfile-nvim.lua
Normal file
12
lua/plugins/bigfile-nvim.lua
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
-- Improve performance of editing big files
|
||||
return {
|
||||
-- https://github.com/LunarVim/bigfile.nvim
|
||||
'LunarVim/bigfile.nvim',
|
||||
event = 'BufReadPre',
|
||||
opts = {
|
||||
filesize = 2, -- size of the file in MiB, the plugin round file sizes to the closest MiB
|
||||
},
|
||||
config = function (_, opts)
|
||||
require('bigfile').setup(opts)
|
||||
end
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue