summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2024-07-19 01:51:24 +0200
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2024-07-19 01:51:24 +0200
commitc58e188c453b99821c4337e20f93ba82e3feac25 (patch)
tree42bf657091095182087f341f782de503c9adc83c
parent7f90f7c25da27ae42c72359395a2fa0008b24b8a (diff)
Fix arrow names
-rw-r--r--fnl/aktersnurra.fnl2
-rw-r--r--fnl/plugins/lsp/mason.fnl2
-rw-r--r--fnl/plugins/which-key.fnl10
-rw-r--r--fnl/settings/icons.fnl12
4 files changed, 13 insertions, 13 deletions
diff --git a/fnl/aktersnurra.fnl b/fnl/aktersnurra.fnl
index 73ec261..b0634a0 100644
--- a/fnl/aktersnurra.fnl
+++ b/fnl/aktersnurra.fnl
@@ -41,7 +41,7 @@
:start (.. (. icons :play) " ")
:task (.. (. icons :checkmark) " ")
:list [(.. (. icons :orb-filled) " ")
- (.. (. icons :right-arrow) " ")
+ (.. (. icons :arrow-right) " ")
(.. (. icons :star) " ")
(.. (. icons :line) " ")]}}})
diff --git a/fnl/plugins/lsp/mason.fnl b/fnl/plugins/lsp/mason.fnl
index 703effe..e9c59ea 100644
--- a/fnl/plugins/lsp/mason.fnl
+++ b/fnl/plugins/lsp/mason.fnl
@@ -4,7 +4,7 @@
(local opts {:ui {:border :single
:icons {:package_installed (.. (. icons :checkmark) " ")
- :package_pending (.. (. icons :right-arrow) " ")
+ :package_pending (.. (. icons :arrow-right) " ")
:package_uninstalled (.. (. icons :close) " ")}}
:max_concurrent_installers 10})
diff --git a/fnl/plugins/which-key.fnl b/fnl/plugins/which-key.fnl
index 269978e..f78efac 100644
--- a/fnl/plugins/which-key.fnl
+++ b/fnl/plugins/which-key.fnl
@@ -13,13 +13,13 @@
:z true
:g true}}
:icons {:breadcrumb (. icons :guillemet)
- :separator (.. (. icons :small-right-arrow) " ")
+ :separator (.. (. icons :small-arrow-right) " ")
:group "+"
:colors false
- :keys {:Up (.. (. icons :up-arrow) " ")
- :Down (.. (. icons :down-arrow) " ")
- :Left (.. (. icons :left-arrow) " ")
- :Right (.. (. icons :right-arrow) " ")
+ :keys {:Up (.. (. icons :arrow-up) " ")
+ :Down (.. (. icons :arrow-down) " ")
+ :Left (.. (. icons :arrow-left) " ")
+ :Right (.. (. icons :arrow-right) " ")
:C (.. (. icons :up-caret) " ")
:M (.. (. icons :meta) " ")
:D (.. (. icons :openbased) " ")
diff --git a/fnl/settings/icons.fnl b/fnl/settings/icons.fnl
index 2e40804..1efa1f9 100644
--- a/fnl/settings/icons.fnl
+++ b/fnl/settings/icons.fnl
@@ -1,6 +1,10 @@
;; Icons.
{
+ :arrow-down "󰁅"
+ :arrow-left "󰁍"
+ :arrow-right ""
+ :arrow-up ""
:bs "󰭜"
:caret ">"
:checkmark ""
@@ -11,7 +15,6 @@
:conflict ""
:cr "󰌑"
:document ""
- :down-arrow "󰁅"
:down :
:error ""
:esc "󱊷"
@@ -29,7 +32,6 @@
:import ""
:info ""
:keyboard ""
- :left-arrow "󰁍"
:lightning ""
:line "‒"
:meta "◆"
@@ -45,22 +47,20 @@
:pentagon-filled "󰜁"
:play ""
:recent-files "󱋢"
- :right-arrow ""
:search-files "󰱽"
:search-project "󰺅"
:search-text "󱎸"
:shift "󰘶"
:sleep "󰒲"
- :small-right-arrow ""
+ :small-arrow-right ""
:space ""
:staged ""
:star ""
:tab "󰌒"
:telescope ""
:unstaged ""
- :up-caret "󰅃"
- :up-arrow ""
:up :
+ :up-caret "󰅃"
:vim ""
:warn ""
}