tangled
alpha
login
or
join now
seth.computer
/
dotfiles
0
fork
atom
this repo has no description
0
fork
atom
overview
issues
pulls
pipelines
nvim: lsp updates, auto enable from mason
seth.computer
3 days ago
2db17e01
068669be
verified
This commit was signed with the committer's
known signature
.
seth.computer
SSH Key Fingerprint:
SHA256:utUtG8j2hgvZ0Rnm/rPJiqFu4NT5bjOnC26AUIBh500=
+5
-1
1 changed file
expand all
collapse all
unified
split
nvim
lua
plugins
lsp.lua
+5
-1
nvim/lua/plugins/lsp.lua
···
31
31
32
32
require("mason").setup({})
33
33
require("mason-lspconfig").setup({
34
34
-
automatic_enable = false,
34
34
+
automatic_enable = true,
35
35
automatic_installation = true,
36
36
ensure_installed = {
37
37
"efm", -- general purpose language server
···
39
39
"jsonls",
40
40
"vtsls",
41
41
"eslint",
42
42
+
"oxlint",
42
43
"bashls",
44
44
+
"gopls",
45
45
+
"goimports",
43
46
"rust_analyzer",
44
47
"pyright",
45
48
"yamlls",
46
49
"denols",
50
50
+
"marksman",
47
51
},
48
52
})
49
53