diff options
Diffstat (limited to 'fnl/plugins')
-rw-r--r-- | fnl/plugins/editor/telescope.fnl | 2 | ||||
-rw-r--r-- | fnl/plugins/icons.fnl | 8 | ||||
-rw-r--r-- | fnl/plugins/ui/alpha.fnl | 6 |
3 files changed, 8 insertions, 8 deletions
diff --git a/fnl/plugins/editor/telescope.fnl b/fnl/plugins/editor/telescope.fnl index 47ddac1..d662b87 100644 --- a/fnl/plugins/editor/telescope.fnl +++ b/fnl/plugins/editor/telescope.fnl @@ -62,7 +62,7 @@ actions (require :telescope.actions) icons (require :plugins.icons)] (telescope.setup {:defaults {:prompt_prefix (.. " " (. icons :telescope) - " ") + " ") :selection_caret (.. (. icons :caret) " ") :path_display [:smart] :color_devicons false diff --git a/fnl/plugins/icons.fnl b/fnl/plugins/icons.fnl index 5439bc9..b1115cb 100644 --- a/fnl/plugins/icons.fnl +++ b/fnl/plugins/icons.fnl @@ -5,12 +5,12 @@ :hint "" :info "" :git " " - :search "" - :text "" + :search-project "" + :search-files "" + :search-text "" :notebook "" :recent-files "" - :cog "" - :cabinet "" + :cog "" :org "" :checkmark "" :right-arrow "" diff --git a/fnl/plugins/ui/alpha.fnl b/fnl/plugins/ui/alpha.fnl index 3dbff4d..c9dce50 100644 --- a/fnl/plugins/ui/alpha.fnl +++ b/fnl/plugins/ui/alpha.fnl @@ -26,11 +26,11 @@ (let [dashboard (require :alpha.themes.dashboard)] (set dashboard.section.header.val ascii-art) (set dashboard.section.buttons.val - [(dashboard.button :f (.. (. icons :search) " Find file") + [(dashboard.button :f (.. (. icons :search-files) " Find file") ":Telescope find_files theme=dropdown<CR>") - (dashboard.button :g (.. (. icons :text) " Find text") + (dashboard.button :g (.. (. icons :search-text) " Find text") ":Telescope live_grep theme=dropdown<CR>") - (dashboard.button :p (.. (. icons :cabinet) " Find project") + (dashboard.button :p (.. (. icons :search-project) " Find project") ":Telescope projects theme=dropdown<CR>") (dashboard.button :r (.. (. icons :recent-files) " Recently used files") ":Telescope oldfiles theme=dropdown<CR>") |