mirror of
https://git.korhonen.cc/FunctionalHacker/dotfiles.git
synced 2024-11-06 15:20:23 +00:00
569186accb
Signed-off-by: Marko Korhonen <marko.korhonen@reekynet.com>
40 lines
877 B
JSON
40 lines
877 B
JSON
{
|
|
"python.jediEnabled": false,
|
|
"suggest.noselect": false,
|
|
"suggest.echodocSupport": true,
|
|
"suggest.maxCompleteItemCount": 20,
|
|
"coc.preferences.formatOnSaveFiletypes": [
|
|
"javascript",
|
|
"typescript",
|
|
"typescriptreact",
|
|
"json",
|
|
"javascriptreact",
|
|
"yaml"
|
|
],
|
|
"prettier.singleQuote": true,
|
|
"diagnostic.errorSign": "•",
|
|
"diagnostic.warningSign": "•",
|
|
"diagnostic.infoSign": "•",
|
|
"suggest.snippetIndicator": "~",
|
|
"languageserver": {
|
|
"bash": {
|
|
"command": "bash-language-server",
|
|
"args": ["start"],
|
|
"filetypes": ["sh"],
|
|
"ignoredRootPaths": ["~"]
|
|
},
|
|
"xml": {
|
|
"command": "xml-language-server",
|
|
"args": ["start"],
|
|
"filetypes": ["xml"],
|
|
"ignoredRootPaths": ["~"]
|
|
}
|
|
},
|
|
"markdownlint.config": {
|
|
"rules": {
|
|
"default": true,
|
|
"line_length": false
|
|
}
|
|
}
|
|
}
|