summaryrefslogtreecommitdiff
path: root/fnl/plugins
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2023-09-17 22:36:47 +0200
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2023-09-17 22:36:47 +0200
commit73479a1b6d5b462b7e46625dd764d6baea4e6d92 (patch)
tree9ad64ac320dea63ecd6aed389cbdd006d691905e /fnl/plugins
parent5d81720c3313fd590d4fe5057931aad96903974c (diff)
Fix groups in which-key
Diffstat (limited to 'fnl/plugins')
-rw-r--r--fnl/plugins/editor/which-key.fnl6
1 files changed, 4 insertions, 2 deletions
diff --git a/fnl/plugins/editor/which-key.fnl b/fnl/plugins/editor/which-key.fnl
index 76f6e47..00fea1c 100644
--- a/fnl/plugins/editor/which-key.fnl
+++ b/fnl/plugins/editor/which-key.fnl
@@ -28,12 +28,14 @@
:triggers_blacklist {:i [:j :k] :v [:j :k]}})
(local groups {:mode [:n :v]
+ :<leader>f {:name :+find}
:<leader>g {:name :+git}
:<leader>j {:name :+diagnostics}
- :<leader>f {:name :+find}
:<leader>l {:name :+lsp}
+ :<leader>o {:name :+orgmode}
:<leader>r {:name :+replace}
- :<leader>s {:name :+session}})
+ :<leader>s {:name :+session}
+ :<leader>w {:name :+db}})
(fn setup []
(let [which-key (require :which-key)]