-
Notifications
You must be signed in to change notification settings - Fork 0
/
neoconf.json
42 lines (41 loc) · 1015 Bytes
/
neoconf.json
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
{
"neodev": {
"library": {
"enabled": true,
"plugins": ["nvim-lspconfig", "lsp"]
}
},
"neoconf": {
"plugins": {
"lua_ls": {
"enabled": true
}
}
},
"lspconfig": {
"lua_ls": {
"Lua.completion.callSnippet": "Replace"
},
"gopls": {
"gopls": {
"usePlaceholders": true,
"hints": {
"parameterNames": true
},
"analyses": {
"fieldalignment": false
}
}
},
"vtsls": {
"javascript.preferences.importModuleSpecifier": "non-relative",
"javascript.referencesCodeLens.showOnAllFunctions": true,
"javascript.referencesCodeLens.enabled": true,
"javascript.implementationsCodeLens.enabled": true,
"typescript.preferences.importModuleSpecifier": "non-relative",
"typescript.referencesCodeLens.showOnAllFunctions": true,
"typescript.referencesCodeLens.enabled": true,
"typescript.implementationsCodeLens.enabled": true
}
}
}