diff options
Diffstat (limited to 'fnl')
-rw-r--r-- | fnl/aktersnurra.fnl | 4 | ||||
-rw-r--r-- | fnl/plugins/orgmode.fnl | 8 | ||||
-rw-r--r-- | fnl/settings/icons.fnl | 8 |
3 files changed, 14 insertions, 6 deletions
diff --git a/fnl/aktersnurra.fnl b/fnl/aktersnurra.fnl index e8106d5..ccbf394 100644 --- a/fnl/aktersnurra.fnl +++ b/fnl/aktersnurra.fnl @@ -32,14 +32,14 @@ :import (.. (. icons :import) " ") :keys (.. (. icons :keyboard) " ") :lazy (.. (. icons :sleep) " ") - :loaded (.. (. icons :filled-orb) " ") + :loaded (.. (. icons :orb-filled) " ") :not_loaded (.. (. icons :orb) " ") :plugin (.. (. icons :package) " ") :runtime (.. (. icons :vim) " ") :source (.. (. icons :code) " ") :start (.. (. icons :play) " ") :task (.. (. icons :checkmark) " ") - :list [(.. (. icons :filled-orb) " ") + :list [(.. (. icons :orb-filled) " ") (.. (. icons :right-arrow) " ") (.. (. icons :star) " ") (.. (. icons :line) " ")]}}}) diff --git a/fnl/plugins/orgmode.fnl b/fnl/plugins/orgmode.fnl index 472a8a3..3387df3 100644 --- a/fnl/plugins/orgmode.fnl +++ b/fnl/plugins/orgmode.fnl @@ -60,9 +60,13 @@ {:concealcursor true :symbols {:list (. icons :line) :headlines [(. icons :orb) - (. icons :filled-orb) + (. icons :orb-filled) (. icons :pentagon) - (. icons :filled-pentagon)] + (. icons :pentagon-filled) + (. icons :hexagon) + (. icons :hexagon-filled) + (. icons :octagon) + (. icons :octagon-filled)] :checkboxes {:half [(. icons :line) "@org.checkbox.halfchecked"] :done [(. icons :checkmark) diff --git a/fnl/settings/icons.fnl b/fnl/settings/icons.fnl index 9f53bbc..6cbf106 100644 --- a/fnl/settings/icons.fnl +++ b/fnl/settings/icons.fnl @@ -10,8 +10,6 @@ :document "" :down : :error "" - :filled-orb "●" - :filled-pentagon "" :git " " :git-add "|" :git-change-delete "~" @@ -19,6 +17,8 @@ :git-top-delete "‾" :git-untracked "┆" :guillemet "»" + :hexagon "" + :hexagon-filled "" :hint "" :ignored "" :import "" @@ -28,9 +28,13 @@ :line "‒" :notebook "" :orb "○" + :orb-filled "●" :org "" :package "" :pentagon "" + :pentagon-filled "" + :octagon "" + :octagon-filled "" :play "" :recent-files "" :right-arrow "" |