2021-04-04 17:35:42 +02:00
|
|
|
{
|
2021-10-30 23:18:29 +02:00
|
|
|
"yaml.schemaStore.enable": true,
|
2021-10-30 23:48:37 +02:00
|
|
|
"yaml.format.enable": true,
|
|
|
|
"yaml.validate": true,
|
2021-10-30 23:18:29 +02:00
|
|
|
"yaml.schemas": {
|
2021-10-30 23:28:29 +02:00
|
|
|
"https://json.schemastore.org/ansible-role-2.9.json": "*.yaml",
|
|
|
|
"https://json.schemastore.org/ansible-playbook.json": "*.yaml",
|
|
|
|
"https://json.schemastore.org/ansible-inventory.json": "*yaml",
|
|
|
|
"https://raw.githubusercontent.com/ansible-community/schemas/main/f/ansible-galaxy.json": "*.yaml",
|
2021-10-30 23:48:37 +02:00
|
|
|
"https://raw.githubusercontent.com/docker/cli/master/cli/compose/schema/data/config_schema_v3.9.json": "*docker-compose.yml",
|
|
|
|
"https://json.schemastore.org/github-workflow.json": ".github/workflows/*",
|
|
|
|
|
2021-10-30 23:28:29 +02:00
|
|
|
"https://json.schemastore.org/docker-compose.json": "*.yaml"
|
2021-10-30 23:18:29 +02:00
|
|
|
},
|
2021-04-07 13:33:11 +02:00
|
|
|
"python.formatting.provider": "black",
|
2021-11-14 01:21:58 +01:00
|
|
|
"python.formatting.blackArgs": ["--line-length", "80"],
|
2021-10-17 14:31:43 +02:00
|
|
|
"python.pythonPath": "python3",
|
2022-01-02 01:27:04 +01:00
|
|
|
"diagnostic.refreshOnInsertMode": "true",
|
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/"
|
|
|
|
],
|
2021-12-12 10:17:39 +01:00
|
|
|
"trace.server": "verbose",
|
2021-05-01 21:24:22 +02:00
|
|
|
"initializationOptions": {
|
|
|
|
"cache": {
|
|
|
|
"directory": "/tmp/ccls"
|
|
|
|
}
|
|
|
|
}
|
2021-04-04 17:35:42 +02:00
|
|
|
}
|
2021-04-05 00:20:37 +02:00
|
|
|
},
|
|
|
|
"solargraph.formatting": true
|
2021-04-04 17:35:42 +02:00
|
|
|
}
|