nvim: Change Lsp info mapping to vim layer
Moved the mapping to show lsp info window from `<localleader>li` to `<leader>vs`. Local leader +l mappings should be reserved for lsp functionality, while we have a whole +v layer to grab (meta) information about our vim installation. It fits in there much better.
This commit is contained in:
parent
293dc8a467
commit
49692601da
2 changed files with 5 additions and 1 deletions
|
|
@ -65,6 +65,11 @@ return {
|
|||
config = function()
|
||||
require("plugins.config.lsp")
|
||||
end,
|
||||
keys = { {
|
||||
"<leader>vs",
|
||||
":LspInfo<cr>",
|
||||
desc = "LspInfo",
|
||||
} },
|
||||
},
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue