🎹 Keybinds Update

- Finally move all keymappings into which-key
- Change to MunsMan/kitty-navigator.nvim
- Change mapping for switching window/split to Ctrl+Shift+<vim-motion>
- Add some new mappings like 'gt' for LazyGit Terminal split
This commit is contained in:
2024-07-13 06:17:29 -04:00
parent 2807567e34
commit 25e4ffc62d
9 changed files with 159 additions and 84 deletions
-4
View File
@@ -5,9 +5,5 @@ return {
"ziontee113/icon-picker.nvim",
config = function()
require("icon-picker").setup({ disable_legacy_commands = true })
local opts = { noremap = true, silent = true }
vim.keymap.set("n", "<Leader>Ii", "<cmd>Pick Icon<cr>", opts)
vim.keymap.set("n", "<Leader>Iy", "<cmd>Yank Icon<cr>", opts)
vim.keymap.set("i", "<C-i>", "<cmd>IconPickerInsert<cr>", opts)
end,
}