summaryrefslogtreecommitdiff
path: root/fnl/config/lsp/mason-null-lsp.fnl
diff options
context:
space:
mode:
Diffstat (limited to 'fnl/config/lsp/mason-null-lsp.fnl')
-rw-r--r--fnl/config/lsp/mason-null-lsp.fnl17
1 files changed, 17 insertions, 0 deletions
diff --git a/fnl/config/lsp/mason-null-lsp.fnl b/fnl/config/lsp/mason-null-lsp.fnl
new file mode 100644
index 0000000..e35f0d7
--- /dev/null
+++ b/fnl/config/lsp/mason-null-lsp.fnl
@@ -0,0 +1,17 @@
+;; Ensure that tools needed for null-ls are installed.
+(module config.mason-null-ls {autoload {: util}})
+
+(def- opts {:ensure_installed {:flake8 :golangci-lint
+ :jsonlint :yamllint
+ :black :fnlfmt
+ :fourmolu :gofmt
+ :goimports :prettier
+ :rustfmt :stylua
+ :shellcheck :sqlformat
+ :terraform-fmt :shfmt}
+ :auto_update true
+ :automatic_installation true})
+
+(util.use-config :mason-null-ls opts)
+(let [mason-null-ls (require :mason-null-ls)]
+ (mason-null-ls.check_install true))