mirror of
https://git.korhonen.cc/FunctionalHacker/dotfiles.git
synced 2024-11-04 18:00:20 +00:00
b1335a3628
Signed-off-by: Marko Korhonen <marko.korhonen@reekynet.com>
46 lines
976 B
JSON
46 lines
976 B
JSON
{
|
|
"python.jediEnabled": false,
|
|
"python.setLinter": "pylint",
|
|
"suggest.noselect": false,
|
|
"suggest.echodocSupport": true,
|
|
"suggest.maxCompleteItemCount": 20,
|
|
"coc.preferences.formatOnSaveFiletypes": [
|
|
"javascript",
|
|
"typescript",
|
|
"typescriptreact",
|
|
"json",
|
|
"javascriptreact"
|
|
],
|
|
"eslint.filetypes": [
|
|
"javascript",
|
|
"typescript",
|
|
"typescriptreact",
|
|
"javascriptreact"
|
|
],
|
|
"eslint.autoFixOnSave": false,
|
|
"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": ["~"]
|
|
},
|
|
"efm": {
|
|
"command": "~/.bin/go/bin/efm-langserver",
|
|
"args": [],
|
|
"filetypes": ["markdown"]
|
|
}
|
|
}
|
|
}
|