summaryrefslogtreecommitdiff
path: root/fnl/plugins/editor/which-key.fnl
diff options
context:
space:
mode:
Diffstat (limited to 'fnl/plugins/editor/which-key.fnl')
-rw-r--r--fnl/plugins/editor/which-key.fnl6
1 files changed, 5 insertions, 1 deletions
diff --git a/fnl/plugins/editor/which-key.fnl b/fnl/plugins/editor/which-key.fnl
index 9ea8ff8..76f6e47 100644
--- a/fnl/plugins/editor/which-key.fnl
+++ b/fnl/plugins/editor/which-key.fnl
@@ -1,5 +1,7 @@
;; Which-key provides a pop-up menu for some key mappings.
+(local icons (require :plugins.icons))
+
(local opts {:plugins {:marks true
:registers true
:spelling {:enabled true :suggestions 20}
@@ -10,7 +12,9 @@
:nav true
:z true
:g true}}
- :icons {:breadcrumb "»" :separator " " :group "+"}
+ :icons {:breadcrumb (. icons :guillemet)
+ :separator (.. (. icons :small-right-arrow) " ")
+ :group "+"}
:popup_mappings {:scroll_down :<c-d> :scroll_up :<c-u>}
:window {:border :rounded :position :bottom :winblend 0}
:layout {:height {:min 4 :max 25}