dotfiles/nvim/coc-settings.json

36 lines
729 B
JSON

{
"git.addedSign.text": "▐",
"git.changedSign.text": "▐",
"git.removedSign.text": "▐",
"git.topRemovedSign.text": "▐",
"git.changeRemovedSign.text": "▐",
"suggest.noselect": false,
"diagnostic.errorSign": "✘",
"diagnostic.warningSign": "⚠",
"diagnostic.infoSign": "🛈",
"diagnostic.checkCurrentLine": true,
"coc.preferences.formatOnSaveFiletypes": [
"javascript",
"html",
"json",
"css",
"scss",
"go"
],
"coc.preferences.hoverTarget": "float",
"languageserver": {
"golang": {
"command": "gopls",
"rootPatterns": [
"go.mod"
],
"filetypes": [
"go"
]
}
},
"go.goplsOptions": {
"staticcheck": true
}
}