diff options
author | Joe <rbo@gmx.us> | 2023-12-18 11:35:46 +0100 |
---|---|---|
committer | Joe <rbo@gmx.us> | 2023-12-18 11:35:46 +0100 |
commit | 0aa1d3e4481b856781246fccca459b158c967c13 (patch) | |
tree | c5c877bcc20152c5e5bba3ebc620d965ad4b96dc /.config/nvim/after | |
parent | up (diff) | |
download | dotfiles-bsd-0aa1d3e4481b856781246fccca459b158c967c13.tar.gz dotfiles-bsd-0aa1d3e4481b856781246fccca459b158c967c13.tar.bz2 dotfiles-bsd-0aa1d3e4481b856781246fccca459b158c967c13.tar.xz dotfiles-bsd-0aa1d3e4481b856781246fccca459b158c967c13.tar.zst dotfiles-bsd-0aa1d3e4481b856781246fccca459b158c967c13.zip |
up
Diffstat (limited to '.config/nvim/after')
-rw-r--r-- | .config/nvim/after/plugin/lsp.lua | 1 | ||||
-rw-r--r-- | .config/nvim/after/plugin/whichkey.lua | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/.config/nvim/after/plugin/lsp.lua b/.config/nvim/after/plugin/lsp.lua index 11801f8..767dec5 100644 --- a/.config/nvim/after/plugin/lsp.lua +++ b/.config/nvim/after/plugin/lsp.lua @@ -32,6 +32,7 @@ require('mason-lspconfig').setup({ 'ltex', 'perlnavigator', 'clangd', + 'yamlls', }, handlers = { lsp.default_setup, diff --git a/.config/nvim/after/plugin/whichkey.lua b/.config/nvim/after/plugin/whichkey.lua index 6676d28..9aa8079 100644 --- a/.config/nvim/after/plugin/whichkey.lua +++ b/.config/nvim/after/plugin/whichkey.lua @@ -31,7 +31,7 @@ wk.register({ }, g = { name = 'git', - s = { vim.cmd.Git, 'git' }, + g = { vim.cmd.Git, 'git' }, -- a = { ':Ag<CR>', 'the_silver_searcher', noremap = true, silent = true }, -- g = { ':Grep<CR>', 'grep', noremap = true, silent = true }, -- r = { ':Rg<CR>', 'ripgrep', noremap = true, silent = true }, |