diff options
author | kylo252 <[email protected]> | 2022-08-09 10:41:17 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2022-08-09 10:41:17 +0200 |
commit | eefde00ae80f91ecf88a93e869e346fdd04c7ba4 (patch) | |
tree | 873b8fc0248938ab060a1482f88c2d6d742ce61b /lua/lvim/core/which-key.lua | |
parent | d53b3743f2a259dbf90446216194ade2bb224ab7 (diff) |
refactor!: migrate to mason.nvim (#2880)
Diffstat (limited to 'lua/lvim/core/which-key.lua')
-rw-r--r-- | lua/lvim/core/which-key.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/lvim/core/which-key.lua b/lua/lvim/core/which-key.lua index 8f0f964f..6d0dc9fc 100644 --- a/lua/lvim/core/which-key.lua +++ b/lua/lvim/core/which-key.lua @@ -160,7 +160,7 @@ M.config = function() w = { "<cmd>Telescope diagnostics<cr>", "Diagnostics" }, f = { require("lvim.lsp.utils").format, "Format" }, i = { "<cmd>LspInfo<cr>", "Info" }, - I = { "<cmd>LspInstallInfo<cr>", "Installer Info" }, + I = { "<cmd>Mason<cr>", "Mason Info" }, j = { vim.diagnostic.goto_next, "Next Diagnostic", |