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:
parent
2dc5b4d5e5
commit
51e7717d88
2 changed files with 9 additions and 3 deletions
nvim/plugin
|
@ -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]' })
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue