2021-04-04 17:35:42 +02:00
|
|
|
{
|
2021-04-07 13:33:11 +02:00
|
|
|
"python.formatting.provider": "black",
|
2021-10-17 14:31:43 +02:00
|
|
|
"python.pythonPath": "python3",
|
2021-04-04 17:35:42 +02:00
|
|
|
"coc.preferences.formatOnSaveFiletypes": [
|
|
|
|
"sh",
|
|
|
|
"yaml",
|
|
|
|
"json",
|
|
|
|
"python",
|
|
|
|
"css",
|
2021-04-14 12:47:32 +02:00
|
|
|
"markdown",
|
2021-09-29 20:17:26 +02:00
|
|
|
"ruby",
|
|
|
|
"go"
|
2021-04-04 17:35:42 +02:00
|
|
|
],
|
2021-04-05 23:50:32 +02:00
|
|
|
"diagnostic.virtualText": true,
|
|
|
|
"diagnostic.virtualTextCurrentLineOnly": false,
|
|
|
|
"diagnostic.checkCurrentLine": false,
|
2021-04-10 17:52:07 +02:00
|
|
|
"diagnostic-languageserver.filetypes": {
|
|
|
|
"markdown": ["write-good", "markdownlint"],
|
|
|
|
"sh": "shellcheck"
|
|
|
|
},
|
2021-04-04 17:35:42 +02:00
|
|
|
"languageserver": {
|
|
|
|
"bash": {
|
|
|
|
"command": "bash-language-server",
|
|
|
|
"args": ["start"],
|
|
|
|
"filetypes": ["sh"],
|
|
|
|
"ignoredRootPaths": ["~"]
|
2021-05-01 21:24:22 +02:00
|
|
|
},
|
|
|
|
"ccls": {
|
|
|
|
"command": "ccls",
|
|
|
|
"filetypes": ["c", "cpp", "objc", "objcpp"],
|
|
|
|
"rootPatterns": [
|
|
|
|
".ccls",
|
|
|
|
"compile_commands.json",
|
|
|
|
".vim/",
|
|
|
|
".git/",
|
|
|
|
".hg/"
|
|
|
|
],
|
|
|
|
"initializationOptions": {
|
|
|
|
"cache": {
|
|
|
|
"directory": "/tmp/ccls"
|
|
|
|
}
|
|
|
|
}
|
2021-04-04 17:35:42 +02:00
|
|
|
}
|
2021-04-05 00:20:37 +02:00
|
|
|
},
|
|
|
|
"solargraph.commandPath": "~/.gem/ruby/2.6.0/bin/solargraph",
|
|
|
|
"solargraph.formatting": true
|
2021-04-04 17:35:42 +02:00
|
|
|
}
|