From b5b83a9991904f3083c545b729247b797abaffa8 Mon Sep 17 00:00:00 2001 From: Jack Walton Jarosz Date: Wed, 6 Nov 2024 14:00:47 -0500 Subject: [PATCH] add document symbols keybind --- init.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/init.lua b/init.lua index 29b435bd..2d0c4aa8 100644 --- a/init.lua +++ b/init.lua @@ -190,6 +190,8 @@ vim.keymap.set('n', '', '', { desc = 'Move focus to the right win vim.keymap.set('n', '', '', { desc = 'Move focus to the lower window' }) vim.keymap.set('n', '', '', { desc = 'Move focus to the upper window' }) +vim.keymap.set('n', 'ds', 'Telescope lsp_document_symbols', {desc = 'Show document symbols', noremap = true, silent = true}) + -- [[ Basic Autocommands ]] -- See `:help lua-guide-autocommands`