add document symbols keybind
This commit is contained in:
parent
ea6c581064
commit
b5b83a9991
2
init.lua
2
init.lua
|
@ -190,6 +190,8 @@ vim.keymap.set('n', '<C-l>', '<C-w><C-l>', { desc = 'Move focus to the right win
|
|||
vim.keymap.set('n', '<C-j>', '<C-w><C-j>', { desc = 'Move focus to the lower window' })
|
||||
vim.keymap.set('n', '<C-k>', '<C-w><C-k>', { desc = 'Move focus to the upper window' })
|
||||
|
||||
vim.keymap.set('n', '<leader>ds', '<cmd>Telescope lsp_document_symbols<CR>', {desc = 'Show document symbols', noremap = true, silent = true})
|
||||
|
||||
-- [[ Basic Autocommands ]]
|
||||
-- See `:help lua-guide-autocommands`
|
||||
|
||||
|
|
Loading…
Reference in New Issue