1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
local function config(_config)
local capabilities = vim.lsp.protocol.make_client_capabilities()
capabilities = vim.tbl_deep_extend("force", capabilities, require("blink.cmp").get_lsp_capabilities({}, false))
capabilities = vim.tbl_deep_extend("force", capabilities, {
textDocument = {
foldingRange = {
dynamicRegistration = false,
lineFoldingOnly = true,
},
},
})
return vim.tbl_deep_extend("force", {
capabilities = capabilities,
}, _config or {})
end
vim.lsp.config("gopls", {
cmd = { "gopls", "serve" },
filetypes = { "go", "go.mod" },
root_markers = {"go.mod", ".git", "go.work"},
settings = {
gopls = {
analyses = {
unusedparams = true,
},
staticcheck = true,
gofumpt = true,
},
},
})
vim.lsp.config("templ", {
cmd = { "templ", "lsp" },
filetypes = { "templ" },
root_markers = { "go.work", "go.mod", ".git" },
})
-- Try to find json-lsp (installed via json-lsp or vscode-json-languageserver)
local jsonlsp_bin = vim.fn.executable("json-lsp") == 1 and "json-lsp"
or vim.fn.executable("vscode-json-languageserver") == 1 and "vscode-json-languageserver"
or nil
if jsonlsp_bin then
vim.lsp.config("jsonls", {
cmd = { jsonlsp_bin, "--stdio" },
filetypes = { "json", "jsonc" },
root_markers = { ".git", "package.json", "tsconfig.json" },
})
end
vim.lsp.enable("gopls")
vim.lsp.enable("templ")
if jsonlsp_bin then
vim.lsp.enable("jsonls")
end
if vim.fn.executable("yaml-language-server") == 1 then
vim.lsp.enable("yamlls")
end
-- require('lspconfig').v_analyzer.setup(config({
-- cmd = { "v-analyzer" },
-- filetypes = { "v", "vv", "vsh" },
-- root_markers = { "v.mod", ".git" },
-- }))
|