Skip to content

Commit a486e72

Browse files
committed
feat(lsp, none-ls): update list
1 parent 04d3caf commit a486e72

File tree

2 files changed

+6
-27
lines changed

2 files changed

+6
-27
lines changed

lua/core/settings.lua

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -108,10 +108,8 @@ settings["external_browser"] = "chrome-cli open"
108108
settings["lsp_deps"] = {
109109
"ansiblels",
110110
"awk_ls",
111-
-- "azure_pipelines_ls",
112111
"bashls",
113112
"clangd",
114-
-- "docker_compose_language_service",
115113
"dockerls",
116114
"gh_actions_ls",
117115
"gitlab_ci_ls",
@@ -121,16 +119,13 @@ settings["lsp_deps"] = {
121119
"lua_ls",
122120
"marksman",
123121
"neocmake",
122+
"nginx_language_server",
124123
"nil_ls",
125124
"pylsp",
125+
"systemd_ls",
126126
"taplo",
127127
"terraformls",
128128
"yamlls",
129-
-- "emmet_ls",
130-
-- "ltex",
131-
-- "nginx_language_server",
132-
-- "snyk_ls",
133-
-- "vimls",
134129
}
135130

136131
-- Set the general-purpose servers that will be installed during bootstrap here.
@@ -140,16 +135,17 @@ settings["lsp_deps"] = {
140135
---@type string[]
141136
settings["null_ls_deps"] = {
142137
"actionlint",
138+
"alex", -- write hint
143139
"ansiblelint",
144140
"clang_format",
145141
"cmakelang",
146142
"eslint_d",
147143
"jq",
148-
"markdownlint_cli2",
149144
"nixpkgs-fmt",
150-
"prettier",
145+
"prettierd",
151146
"shellharden",
152147
"stylua",
148+
"systemdlint",
153149
}
154150

155151
-- Set the Debug Adapter Protocol (DAP) clients that will be installed and configured during bootstrap here.

lua/modules/configs/completion/null-ls.lua

Lines changed: 1 addition & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -21,21 +21,7 @@ return function()
2121
filetypes = { "c", "cpp", "objc", "objcpp", "cs", "cuda", "proto" },
2222
extra_args = formatter_args("clang_format"),
2323
}),
24-
btns.formatting.prettier.with({
25-
filetypes = {
26-
"vue",
27-
"typescript",
28-
"javascript",
29-
"typescriptreact",
30-
"javascriptreact",
31-
"yaml",
32-
"html",
33-
"css",
34-
"scss",
35-
"sh",
36-
"markdown",
37-
},
38-
}),
24+
btns.formatting.prettierd,
3925
btns.formatting.shellharden,
4026
btns.formatting.alejandra,
4127
btns.formatting.nixfmt,
@@ -47,9 +33,6 @@ return function()
4733
}),
4834

4935
-- Linters
50-
btns.diagnostics.markdownlint_cli2.with({
51-
extra_args = { "--disable MD033" },
52-
}),
5336
btns.diagnostics.zsh,
5437
btns.diagnostics.deadnix,
5538
btns.diagnostics.statix,

0 commit comments

Comments
 (0)