Archived
0
0
Fork 0

add whichkey

This commit is contained in:
Daryl Ronningen 2022-10-12 18:48:48 -07:00
parent 6d52bfba07
commit 4909bf8662
Signed by: Daryl Ronningen
GPG key ID: FD23F0C934A5EC6B
2 changed files with 25 additions and 0 deletions

View file

@ -22,6 +22,22 @@ if present then
lsp_saga = true,
treesitter_context = true,
ts_rainbow = true,
native_lsp = {
enabled = true,
virtual_text = {
errors = { "italic" },
hints = { "italic" },
warnings = { "italic" },
information = { "italic" },
},
underlines = {
errors = { "underline" },
hints = { "underline" },
warnings = { "underline" },
information = { "underline" },
},
},
which_key = true,
},
})

View file

@ -268,6 +268,15 @@ return packer.startup(function(use)
event = "BufReadPre",
})
-- WhichKey
use({
"folke/which-key.nvim",
event = "BufReadPre",
config = function()
require("which-key").setup({})
end,
})
if PACKER_BOOTSTRAP then
require("packer").sync()
end