summaryrefslogtreecommitdiff
path: root/plugin/which-key.lua
blob: e6d5eccc5544590896979a5e3f1d8bbaecceef9f (plain)
1
2
3
4
5
6
7
8
9
10
if vim.g.did_load_which_key_plugin then
	return
end
vim.g.did_load_which_key_plugin = true

require("which-key").setup({
	plugins = {
		spelling = { enable = true },
	},
})