diff --git a/ansible/roles/neovim/files/nvim/lua/settings/lazy/plugins/which-key.lua b/ansible/roles/neovim/files/nvim/lua/settings/lazy/plugins/which-key.lua index 7d870ba..6917fb3 100644 --- a/ansible/roles/neovim/files/nvim/lua/settings/lazy/plugins/which-key.lua +++ b/ansible/roles/neovim/files/nvim/lua/settings/lazy/plugins/which-key.lua @@ -7,12 +7,12 @@ return { end, config = function() require("which-key").register({ - { "", "", desc = "l" }, - { "", "", desc = "h" }, - { "", "", desc = "j" }, - { "", "", desc = ":write" }, - { "", "", desc = ":quitall" }, - { "", "", desc = "k" }, + { "", "h", }, + { "", "l", }, + { "", "j", }, + { "", ":write", }, + { "", ":quitall", }, + { "", "k", }, }) end }