add document symbols keybind

This commit is contained in:
Jack Walton Jarosz 2024-11-06 14:00:47 -05:00
parent ea6c581064
commit b5b83a9991
1 changed files with 2 additions and 0 deletions

View File

@ -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`