feat(neovim): added buffer-vacuum plugin

This commit is contained in:
Kyren223
2024-07-23 19:26:33 +03:00
parent 5c649145d5
commit 09623783f8
2 changed files with 10 additions and 0 deletions

View File

@@ -4,6 +4,7 @@
"alpha-nvim": { "branch": "main", "commit": "41283fb402713fc8b327e60907f74e46166f4cfd" },
"auto-save.nvim": { "branch": "main", "commit": "5fe9ab0c42f0457f2a973e814a6352b8eeb04730" },
"auto-session": { "branch": "main", "commit": "08c279882d4117a3e6ade1a014f7cf4af7c34fec" },
"buffer-vacuum": { "branch": "main", "commit": "1de74795e850953e18c34adf6ab9a4f4d4fddd1e" },
"buffer_manager.nvim": { "branch": "main", "commit": "fd36131b2b3e0f03fd6353ae2ffc88cf920b3bbb" },
"ccc.nvim": { "branch": "main", "commit": "4fb5abaef2f2e0540fe22d4d74a9841205fff9e4" },
"cmp-nvim-lsp": { "branch": "main", "commit": "39e2eda76828d88b773cc27a3f61d2ad782c922d" },

View File

@@ -0,0 +1,9 @@
return {
-- FIX: Only cleans 1 buffer at a time
-- which means if u have more than max buffers, it'll never go below MAX buffers
'ChuufMaster/buffer-vacuum',
event = 'VeryLazy',
opts = {
max_buffers = 6,
},
}