summaryrefslogtreecommitdiff
path: root/fnl/config/lsp/mason.fnl
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2022-07-27 00:32:49 +0200
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2022-07-27 00:32:49 +0200
commit5cc2e3d846c693e615af88ed7678422edadd3a04 (patch)
tree65044c6c6670137cb119c34713258c1f0325285f /fnl/config/lsp/mason.fnl
parent9af69c1df30ccb99e2f34632c3809987b22c98b4 (diff)
Replace lsp-installer with mason
Diffstat (limited to 'fnl/config/lsp/mason.fnl')
-rw-r--r--fnl/config/lsp/mason.fnl9
1 files changed, 9 insertions, 0 deletions
diff --git a/fnl/config/lsp/mason.fnl b/fnl/config/lsp/mason.fnl
new file mode 100644
index 0000000..66963cb
--- /dev/null
+++ b/fnl/config/lsp/mason.fnl
@@ -0,0 +1,9 @@
+;; Mason manages external tooling, e.g. lsp, formatters, and linters.
+(module config.lsp.mason {autoload {: util}})
+
+(def- opts {:ui {:icons {:package_installed "✓"
+ :package_pending "➜"
+ :package_uninstalled "✗"}}
+ :max_concurrent_installers 10})
+
+(util.use-config :mason opts)