diff --git a/config/keymaps.nix b/config/keymaps.nix index f86e97a..4ae989e 100644 --- a/config/keymaps.nix +++ b/config/keymaps.nix @@ -200,14 +200,23 @@ }; } { - action = "lua require'telescope.builtin'.lsp_workplace_symbols{}"; - key = "fs"; + action = "lua require'telescope.builtin'.lsp_document_symbols{}"; + key = "a"; options = { silent = true; noremap = true; desc = "List and search through document symbols"; }; } + { + action = "lua require'telescope.builtin'.lsp_workspace_symbols{}"; + key = "fcs"; + options = { + silent = true; + noremap = true; + desc = "List and search through workplace symbols"; + }; + } { action = "lua require'telescope.builtin'.lsp_type_definitions{}"; key = "fct";