diff options
Diffstat (limited to 'fnl')
-rw-r--r-- | fnl/config/lsp/mason-lspconfig.fnl | 2 | ||||
-rw-r--r-- | fnl/config/lsp/mason-null-ls.fnl | 20 |
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}) |