summaryrefslogtreecommitdiff
path: root/coc-settings.json
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2024-10-29 19:51:44 +0100
committerHampusM <hampus@hampusmat.com>2024-10-29 19:51:44 +0100
commitff84b5cee3c2a84c8be3c30f897e50d25358b1d3 (patch)
treecb33ddc657901adb983d62cbb02eac7b98ac30f7 /coc-settings.json
parent2eb6ab3e57912d84c7617f6be3351d8e43caa839 (diff)
restructure lua coc extension configs
Diffstat (limited to 'coc-settings.json')
-rw-r--r--coc-settings.json47
1 files changed, 11 insertions, 36 deletions
diff --git a/coc-settings.json b/coc-settings.json
index d3e5120..3ecb844 100644
--- a/coc-settings.json
+++ b/coc-settings.json
@@ -7,42 +7,17 @@
"focusable": true,
"rounded": true
},
- "Lua": {
- "workspace": {
- "maxPreload": 10000,
- "preloadFileSize": 10000000
- },
- "runtime": {
- "version": "Lua 5.1"
- },
- "diagnostics": {
- "enable": true,
- "globals": [
- "vim"
- ]
- },
- "telemetry": {
- "enabled": false
- },
- "completion": {
- "callSnippet": "Both",
- "displayContext": 2,
- "showWord": "Enable",
- "keywordSnippet": "Both"
- },
- "hint": {
- "setType": true,
- "paramName": "Disable",
- "paramType": false
- },
- "IntelliSense": {
- "traceBeSetted": true,
- "traceFieldInject": true
- },
- "window": {
- "statusBar": false
- }
- },
+ "Lua.workspace.maxPreload": 10000,
+ "Lua.workspace.preloadFileSize": 10000000,
+ "Lua.diagnostics.enable": true,
+ "Lua.completion.callSnippet": "Both",
+ "Lua.completion.displayContext": 2,
+ "Lua.completion.showWord": "Enable",
+ "Lua.completion.keywordSnippet": "Both",
+ "Lua.hint.setType": true,
+ "Lua.hint.paramName": "Disable",
+ "Lua.hint.paramType": false,
+ "Lua.window.statusBar": false,
"clangd.compilationDatabasePath": "build",
"rust-analyzer.restartServerOnConfigChange": true,
"rust-analyzer.cargo.features": "all",