myhome/.config/nvim/coc-settings.json
Marcin Woźniak 5f536e840f
Added
Signed-off-by: Marcin Woźniak <y0rune@aol.com>
2021-04-14 12:47:32 +02:00

30 lines
692 B
JSON

{
"python.formatting.provider": "black",
"coc.preferences.formatOnSaveFiletypes": [
"sh",
"yaml",
"json",
"python",
"css",
"markdown",
"ruby"
],
"diagnostic.virtualText": true,
"diagnostic.virtualTextCurrentLineOnly": false,
"diagnostic.checkCurrentLine": false,
"diagnostic-languageserver.filetypes": {
"markdown": ["write-good", "markdownlint"],
"sh": "shellcheck"
},
"languageserver": {
"bash": {
"command": "bash-language-server",
"args": ["start"],
"filetypes": ["sh"],
"ignoredRootPaths": ["~"]
}
},
"solargraph.commandPath": "~/.gem/ruby/2.6.0/bin/solargraph",
"solargraph.formatting": true
}