summaryrefslogtreecommitdiff
path: root/fnl/plugins/lsp/mason.fnl
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2023-05-20 00:08:22 +0200
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2023-05-20 00:08:22 +0200
commit7df25e8ce3e98e4cb56c5eb47c6ada1f414e083c (patch)
tree4a2c593af7e1116ea1d42dd95f50d0b1f0ecd856 /fnl/plugins/lsp/mason.fnl
parentb025d2ca64e9c3b4d65635883eead9bac625921f (diff)
Add icons file
Diffstat (limited to 'fnl/plugins/lsp/mason.fnl')
-rw-r--r--fnl/plugins/lsp/mason.fnl8
1 files changed, 5 insertions, 3 deletions
diff --git a/fnl/plugins/lsp/mason.fnl b/fnl/plugins/lsp/mason.fnl
index bc63e23..f94f328 100644
--- a/fnl/plugins/lsp/mason.fnl
+++ b/fnl/plugins/lsp/mason.fnl
@@ -1,9 +1,11 @@
;; Mason manages external tooling, e.g. lsp, formatters, and linters.
+(local icons (require :plugins.icons))
+
(local opts {:ui {:border :single
- :icons {:package_installed " "
- :package_pending " "
- :package_uninstalled " "}}
+ :icons {:package_installed (.. (. icons :checkmark) " ")
+ :package_pending (.. (. icons :right-arrow) " ")
+ :package_uninstalled (.. (. icons :close) " ")}}
:max_concurrent_installers 10})
{1 :williamboman/mason.nvim