dotfiles/.config/nvim/coc-settings.json
2021-05-19 16:33:12 +02:00

41 lines
742 B
JSON
Executable File

{
"explorer.icon.enableNerdfont": true,
"java.format.enabled": false,
"rust-analyzer.updates.channel": "nightly",
"coc.preferences.formatOnSaveFiletypes": [
"cs",
"html",
"java",
"javascript",
"json",
"go",
"python",
"rust",
"scala",
"typescript",
"typescript.tsx",
"typescriptreact",
"vue",
"xml"
],
"languageserver": {
"go": {
"command": "gopls",
"rootPatterns": [
"go.mod"
],
"trace.server": "verbose",
"filetypes": [
"go"
]
}
},
"python.formatting.provider": "black",
"python.formatting.blackArgs": [
"--line-length",
"120"
],
"python.linting.flake8Enabled": true,
"pyright.enable": true
}