feat(keymaps): Add keymaps for window switching

Move telescope command history to `tQ` instead of `tq`
Move tab open/close to `t` group
This commit is contained in:
Jiří Štefka 2024-09-18 21:50:40 +02:00
parent 2dc5b4d5e5
commit 51e7717d88
Signed by: jiriks74
GPG key ID: 1D5E30D3DB2264DE
2 changed files with 9 additions and 3 deletions
nvim/plugin

View file

@ -86,7 +86,7 @@ vim.keymap.set(
vim.keymap.set('n', '<leader>*', builtin.grep_string, { desc = '[telescope] grep current string [*]' })
vim.keymap.set('n', '<leader>tg', project_files, { desc = '[t]elescope project files [g]' })
vim.keymap.set('n', '<leader>tc', builtin.quickfix, { desc = '[t]elescope quickfix list [c]' })
vim.keymap.set('n', '<leader>tq', builtin.command_history, { desc = '[t]elescope command history [q]' })
vim.keymap.set('n', '<leader>tQ', builtin.command_history, { desc = '[t]elescope command history [Q]' })
vim.keymap.set('n', '<leader>tl', builtin.loclist, { desc = '[t]elescope [l]oclist' })
vim.keymap.set('n', '<leader>tr', builtin.registers, { desc = '[t]elescope [r]egisters' })
vim.keymap.set('n', '<leader>tbb', builtin.buffers, { desc = '[t]elescope [b]uffers [b]' })