nvim/zsh: remove jj key mapping, add two aliases, nvim: back to arrow

This commit is contained in:
2025-06-03 22:59:14 +02:00
parent 3eaba86825
commit f5302fc646
6 changed files with 22 additions and 57 deletions

View File

@@ -1,4 +1,18 @@
return {
{
"otavioschwanck/arrow.nvim",
dependencies = {
{ "nvim-tree/nvim-web-devicons" },
-- or if using `mini.icons`
-- { "echasnovski/mini.icons" },
},
opts = {
show_icons = true,
leader_key = '-', -- Recommended to be a single key
buffer_leader_key = '+', -- Per Buffer Mappings
}
},
-- "gc" to comment visual regions/lines
{
'numToStr/Comment.nvim',
@@ -21,9 +35,9 @@ return {
{
'inkarkat/vim-ReplaceWithRegister',
keys = {
{ 'gp', '<Plug>ReplaceWithRegisterOperator' },
{ 'gpp', '<Plug>ReplaceWithRegisterLine' },
{ 'gp', '<Plug>ReplaceWithRegisterVisual', mode = 'x' },
{ '<leader>rp', '<Plug>ReplaceWithRegisterOperator' },
{ '<leader>rpp', '<Plug>ReplaceWithRegisterLine' },
{ '<leader>rp', '<Plug>ReplaceWithRegisterVisual', mode = 'x' },
},
},
@@ -84,11 +98,4 @@ return {
},
},
{
'echasnovski/mini.nvim',
version = '*',
config = function()
require('mini.ai').setup()
end
},
}