summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2022-11-13 01:28:14 +0100
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2022-11-13 01:28:14 +0100
commitd38688868b5bc591c729931e4be824fe90a0b87a (patch)
treea33247b7597d99903e3cc45dd21b1f53434e6255
parent817bedbba59c512628d35923a6e6fee804dc2b8a (diff)
Remove go lsp stuff
-rw-r--r--fnl/config/lsp/mason-lspconfig.fnl2
-rw-r--r--fnl/config/lsp/mason-null-ls.fnl20
2 files changed, 9 insertions, 13 deletions
diff --git a/fnl/config/lsp/mason-lspconfig.fnl b/fnl/config/lsp/mason-lspconfig.fnl
index 219d470..1ac5dde 100644
--- a/fnl/config/lsp/mason-lspconfig.fnl
+++ b/fnl/config/lsp/mason-lspconfig.fnl
@@ -5,8 +5,6 @@
:clangd
:cssls
:dockerls
- ;; :erlangls ;; must install rebar3 first
- ;; :fennel_language_server
:hls
:html
:jsonls
diff --git a/fnl/config/lsp/mason-null-ls.fnl b/fnl/config/lsp/mason-null-ls.fnl
index 33cf93f..db608d5 100644
--- a/fnl/config/lsp/mason-null-ls.fnl
+++ b/fnl/config/lsp/mason-null-ls.fnl
@@ -1,25 +1,23 @@
;; Ensure that tools needed for null-ls are installed.
(module config.mason-null-ls {autoload {util config.util}})
-(def- opts {:ensure_installed [:flake8
- :golangci-lint
+(def- opts {:ensure_installed [:black
:cpplint
- :gitlint
- :jsonlint
- :yamllint
- :black
+ :flake8
:fnlfmt
:fourmolu
- :gofmt
- :goimports
+ :gitlint
+ :hadolint
+ :jsonlint
:prettier
:rustfmt
- :stylua
:shellcheck
+ :shfmt
:sqlfluff
- :hadolint
+ :stylua
:terraform-fmt
- :shfmt]
+ :yamllint]
+
:auto_update true
:automatic_installation true})