feat(nvim): minify copnfig

This commit is contained in:
Barrett Ruth 2026-03-07 22:55:22 -05:00
parent 772322333c
commit 58703c4bf8
Signed by: barrett
GPG key ID: A6C96C9349D2FC81
4 changed files with 79 additions and 38 deletions

View file

@ -3,8 +3,6 @@ vim.pack.add({
'https://github.com/monaqa/dial.nvim',
'https://github.com/catgoose/nvim-colorizer.lua',
'https://github.com/echasnovski/mini.pairs',
'https://github.com/echasnovski/mini.misc',
'https://github.com/nvim-mini/mini.bufremove',
'https://github.com/tpope/vim-abolish',
'https://github.com/tpope/vim-sleuth',
'https://github.com/kylechui/nvim-surround',
@ -202,34 +200,6 @@ return {
end,
event = 'BufReadPre',
},
{
'echasnovski/mini.misc',
after = function()
require('mini.misc').setup()
end,
keys = {
{
'<c-w>m',
"<cmd>lua MiniMisc.zoom(0, { title = '', border = 'none' })<cr>",
},
},
},
{
'nvim-mini/mini.bufremove',
after = function()
require('mini.bufremove').setup()
end,
keys = {
{
'<leader>bd',
'<cmd>lua MiniBufremove.delete()<cr>',
},
{
'<leader>bw',
'<cmd>lua MiniBufremove.wipeout()<cr>',
},
},
},
{ 'tpope/vim-abolish', event = 'DeferredUIEnter' },
{ 'tpope/vim-sleuth', event = 'BufReadPost' },
{