dotfiles/config/nvim/coc-settings.json
2021-10-20 19:44:24 +04:00

41 lines
1.1 KiB
JSON

{
"solargraph.diagnostics": true,
"solargraph.useBundler": false,
"solargraph.hover": true,
"solargraph.references": true,
"solargraph.definitions": true,
"diagnostic.errorSign": "E>",
"diagnostic.warningSign": "W>",
"diagnostic.infoSign": "I>",
"diagnostic.hintSign": "?>",
"diagnostic.locationlistUpdate": true,
"diagnostic.displayByAle": false,
"diagnostic.messageTarget": "float",
"diagnostic.messageDelay": 250,
"diagnostic.refreshOnInsertMode": false,
"highlight.disableLanguages": ["slim", "md"],
"coc.source.omni.filetypes": [],
"coc.source.omni.enable": false,
"tailwindCSS.emmetCompletions": true,
"languageserver": {
"golang": {
"command": "gopls",
"rootPatterns": ["go.mod", ".vim/", ".git/", ".hg/"],
"filetypes": ["go"],
"initializationOptions": {
"usePlaceholders": true
}
},
"godot": {
"host": "127.0.0.1",
"port": 6008,
"trace.server": "verbose",
"filetypes": ["gd", "tscn", "gdscript3"]
},
"erlang": {
"command": "erlang_ls",
"filetypes": ["erlang"]
}
}
}