Nvim: add keybind to show document symbols

This commit is contained in:
Marko Korhonen 2023-09-22 09:37:58 +03:00
parent aa42d6ab39
commit 488b3e5bf4

View file

@ -72,6 +72,7 @@ function m.map_keys()
D = { vim.lsp.buf.declaration, "Declaration" },
i = { telescope_builtin.lsp_implementations, "Implementation" },
r = { telescope_builtin.lsp_references, "References" },
s = { telescope_builtin.lsp_document_symbols, "Symbols" },
},
["<leader>"] = {
name = "Leader",