dots/.vim/coc-settings.json

63 lines
1.5 KiB
JSON
Raw Normal View History

2020-05-07 02:23:37 +02:00
{
2021-12-31 15:43:27 +01:00
"prettier.requireConfig":true,
2020-05-07 02:23:37 +02:00
"eslint.autoFixOnSave": true,
2021-12-31 15:43:27 +01:00
"eslint.validate": ["javascript", "typescript", "javascriptreact", "typescriptreact", "typescript.tsx", "svelte"],
2020-05-07 02:23:37 +02:00
"prettier.semi": false,
"prettier.tabWidth": 2,
"prettier.singleQuote": true,
"prettier.arrowParens": "avoid",
2021-12-31 15:43:27 +01:00
"prettier.printWidth": 120,
2020-05-07 02:23:37 +02:00
"prettier.disableSuccessMessage": true,
"coc.preferences.colorSupport": true,
"coc.preferences.formatOnType": true,
2021-12-31 15:43:27 +01:00
2020-05-07 02:23:37 +02:00
"coc.preferences.formatOnTypeFiletypes": [
"javascript",
"typescript",
"javascriptreact",
"typescriptreact",
"typescript.tsx",
"html",
"json",
"Markdown",
2020-07-02 15:51:01 +02:00
"css",
"svelte"
2020-05-07 02:23:37 +02:00
],
2021-12-31 15:43:27 +01:00
2020-05-07 02:23:37 +02:00
"coc.preferences.formatOnSaveFiletypes": [
"javascript",
"typescript",
"javascriptreact",
"typescriptreact",
"typescript.tsx",
"html",
"json",
"Markdown",
2020-07-02 15:51:01 +02:00
"css",
"svelte"
2020-05-07 02:23:37 +02:00
],
2021-12-31 15:43:27 +01:00
"languageserver": {
"racket": {
"command": "racket",
"args": ["--lib", "racket-langserver"],
"filetypes": ["scheme", "racket"]
}
},
"diagnostic.messageTarget": "echo",
"signature.target": "echo",
2020-05-07 02:23:37 +02:00
"diagnostic.errorSign": ">",
"diagnostic.warningSign": ".",
"diagnostic.infoSign": ".",
2021-12-31 15:43:27 +01:00
"suggest.autoTrigger": "trigger",
2020-05-13 19:10:30 +02:00
"emmet.includeLanguages": { "javascript": "javascriptreact" },
2021-12-31 15:43:27 +01:00
"javascript.suggestionActions.enabled": true,
"typescript.suggestionActions.enabled": true,
"svelte.plugin.typescript.diagnostics.enable": true,
"snippets.userSnippetsDirectory": "~/.vim/snips/",
"coc.source.file.triggerCharacters": ["/"]
2020-05-07 02:23:37 +02:00
}