dotfiles/nvim/coc-settings.json

54 lines
1.1 KiB
JSON
Raw Normal View History

2021-06-16 16:29:32 -05:00
{
"git.addedSign.text": "▐",
"git.changedSign.text": "▐",
"git.removedSign.text": "▐",
"git.topRemovedSign.text": "▐",
2021-06-22 11:27:27 -05:00
"git.changeRemovedSign.text": "▐",
"suggest.noselect": false,
"diagnostic.errorSign": "✘",
"diagnostic.warningSign": "⚠",
"diagnostic.infoSign": "🛈",
"diagnostic.checkCurrentLine": true,
2021-08-04 10:51:46 -05:00
"diagnostic-languageserver.filetypes": {
"sh": "shellcheck"
},
"diagnostic-languageserver.formatFiletypes": {
"sh": "shfmt"
},
2021-06-22 11:27:27 -05:00
"coc.preferences.formatOnSaveFiletypes": [
2021-07-06 00:29:14 -05:00
"css",
"go",
2021-06-22 11:27:27 -05:00
"html",
2021-07-06 00:29:14 -05:00
"javascript",
2021-06-22 11:27:27 -05:00
"json",
2021-07-12 14:07:23 -05:00
"ruby",
2021-07-06 00:29:14 -05:00
"rust",
"scss"
2021-06-22 11:27:27 -05:00
],
2021-07-06 00:29:14 -05:00
"hover.target": "float",
2021-06-22 11:27:27 -05:00
"languageserver": {
"golang": {
"command": "gopls",
"rootPatterns": [
2021-07-06 00:29:14 -05:00
"go.mod",
".vim/",
".git/",
".hg/"
2021-06-22 11:27:27 -05:00
],
"filetypes": [
"go"
2021-07-06 00:29:14 -05:00
],
"initializationOptions": {
"usePlaceholders": true
}
2021-06-22 11:27:27 -05:00
}
},
"go.goplsOptions": {
"staticcheck": true
2021-07-06 00:29:14 -05:00
},
"snippets.textmateSnippetsRoots": [
"~/.config/coc/snippets"
],
"rust-analyzer.checkOnSave.command": "clippy"
2021-06-16 16:29:32 -05:00
}