summaryrefslogtreecommitdiff
path: root/config/plugin/which-key.lua
diff options
context:
space:
mode:
Diffstat (limited to 'config/plugin/which-key.lua')
-rw-r--r--config/plugin/which-key.lua10
1 files changed, 10 insertions, 0 deletions
diff --git a/config/plugin/which-key.lua b/config/plugin/which-key.lua
new file mode 100644
index 0000000..e6d5ecc
--- /dev/null
+++ b/config/plugin/which-key.lua
@@ -0,0 +1,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 },
+ },
+})