1
0

neovim changes

This commit is contained in:
2025-01-25 22:22:13 +01:00
parent 4c1db847d5
commit 565cbf064a
14 changed files with 253 additions and 199 deletions

View File

@@ -11,9 +11,32 @@ return {
},
{
'aznhe21/actions-preview.nvim',
config = function()
require('actions-preview').setup({})
vim.keymap.set('n', '<leader>ca', require('actions-preview').code_actions)
end,
keys = { {
'<leader>ca',
function()
require('actions-preview').code_actions()
end,
} },
opts = {},
-- config = function()
-- require('actions-preview').setup({})
-- vim.keymap.set('n', '<leader>ca', require('actions-preview').code_actions)
-- end,
},
{
'vyfor/cord.nvim',
event = 'VeryLazy',
branch = 'client-server',
build = ':Cord update',
opts = {},
},
{
'tpope/vim-fugitive',
cmd = { 'Git' },
},
{
'mhinz/vim-grepper',
cmd = { 'GrepperRg' },
opts = {},
},
}