diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2024-01-06 00:01:34 +0100 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2024-01-06 00:01:34 +0100 |
commit | 0b31db0cbfeb036311e143bb681f2c509860b1ca (patch) | |
tree | 4a92516859df39fd9cb972319b47295ad53e8034 /fnl | |
parent | 487d7d06cc40f3e60a884693811f5fbb8a980040 (diff) |
Update icons path
Diffstat (limited to 'fnl')
-rw-r--r-- | fnl/plugins/alpha.fnl | 2 | ||||
-rw-r--r-- | fnl/plugins/gitsigns.fnl | 2 | ||||
-rw-r--r-- | fnl/plugins/lsp/diagnostics.fnl | 2 | ||||
-rw-r--r-- | fnl/plugins/lsp/mason.fnl | 2 | ||||
-rw-r--r-- | fnl/plugins/lualine.fnl | 2 | ||||
-rw-r--r-- | fnl/plugins/telescope.fnl | 2 | ||||
-rw-r--r-- | fnl/plugins/which-key.fnl | 2 | ||||
-rw-r--r-- | fnl/settings/autocmds.fnl | 4 |
8 files changed, 9 insertions, 9 deletions
diff --git a/fnl/plugins/alpha.fnl b/fnl/plugins/alpha.fnl index 89cfc2a..9f6bb24 100644 --- a/fnl/plugins/alpha.fnl +++ b/fnl/plugins/alpha.fnl @@ -1,6 +1,6 @@ ;; A customizable greeter. -(local icons (require :icons)) +(local icons (require :settings.icons)) (local ascii-art [" ##############..... ############## " " ##############......############## " diff --git a/fnl/plugins/gitsigns.fnl b/fnl/plugins/gitsigns.fnl index a194f3c..38beb02 100644 --- a/fnl/plugins/gitsigns.fnl +++ b/fnl/plugins/gitsigns.fnl @@ -41,7 +41,7 @@ :mode [:o :x] :desc "GitSigns Select Hunk"}]) -(local icons (require :icons)) +(local icons (require :settings.icons)) (local signs {:add {:text (. icons :git-add)} :change {:text (. icons :git-add)} diff --git a/fnl/plugins/lsp/diagnostics.fnl b/fnl/plugins/lsp/diagnostics.fnl index f4a2a74..0ea5312 100644 --- a/fnl/plugins/lsp/diagnostics.fnl +++ b/fnl/plugins/lsp/diagnostics.fnl @@ -1,6 +1,6 @@ ;; Handlers for the requests and responses from and to the lsp server. -(local icons (require :icons)) +(local icons (require :settings.icons)) (local signs [{:name :DiagnosticSignError :text (. icons :error)} {:name :DiagnosticSignWarn :text (. icons :warn)} diff --git a/fnl/plugins/lsp/mason.fnl b/fnl/plugins/lsp/mason.fnl index 4187381..703effe 100644 --- a/fnl/plugins/lsp/mason.fnl +++ b/fnl/plugins/lsp/mason.fnl @@ -1,6 +1,6 @@ ;; Mason manages external tooling, e.g. lsp, formatters, and linters. -(local icons (require :icons)) +(local icons (require :settings.icons)) (local opts {:ui {:border :single :icons {:package_installed (.. (. icons :checkmark) " ") diff --git a/fnl/plugins/lualine.fnl b/fnl/plugins/lualine.fnl index 1afad4f..11291d8 100644 --- a/fnl/plugins/lualine.fnl +++ b/fnl/plugins/lualine.fnl @@ -1,6 +1,6 @@ ;; Statusbar. -(local icons (require :icons)) +(local icons (require :settings.icons)) (local disable [:neogitstatus :netrw diff --git a/fnl/plugins/telescope.fnl b/fnl/plugins/telescope.fnl index 1489f06..d6f5217 100644 --- a/fnl/plugins/telescope.fnl +++ b/fnl/plugins/telescope.fnl @@ -108,7 +108,7 @@ (fn config [] (let [telescope (require :telescope) actions (require :telescope.actions) - icons (require :icons)] + icons (require :settings.icons)] (telescope.setup {:defaults {:prompt_prefix (.. " " (. icons :telescope) " ") :selection_caret (.. (. icons :caret) " ") diff --git a/fnl/plugins/which-key.fnl b/fnl/plugins/which-key.fnl index 9251832..cc40d17 100644 --- a/fnl/plugins/which-key.fnl +++ b/fnl/plugins/which-key.fnl @@ -1,6 +1,6 @@ ;; Which-key provides a pop-up menu for some key mappings. -(local icons (require :icons)) +(local icons (require :settings.icons)) (local opts {:plugins {:marks true :registers true diff --git a/fnl/settings/autocmds.fnl b/fnl/settings/autocmds.fnl index f6d2584..5563f53 100644 --- a/fnl/settings/autocmds.fnl +++ b/fnl/settings/autocmds.fnl @@ -16,11 +16,11 @@ {:command :checktime}] [[:InsertLeave :WinEnter] {:callback (lambda [] - (let [cursorline (require :util.cursorline)] + (let [cursorline (require :settings.cursorline)] cursorline.show))}] [[:InsertEnter :WinLeave] {:callback (lambda [] - (let [cursorline (require :util.cursorline)] + (let [cursorline (require :settings.cursorline)] cursorline.hide))}]]) (let [cmds (require :util.cmds)] |