LunarVim/coc-settings.json

59 lines
1.3 KiB
JSON
Raw Normal View History

2020-04-26 07:39:35 +02:00
{
2020-05-10 19:29:31 +02:00
// suggestions
// "suggest.echodocSupport": true,
// diagnostics
"diagnostic.errorSign": "✗",
"diagnostic.warningSign": "⚠",
"diagnostic.infoSign": "",
"diagnostic.hintSign": " ",
// "diagnostic.displayByAle": true,
// codelens TODO what does this get me?
// "codeLens.enable": true,
// list
"list.indicator": ">",
"list.selectedSignText": " ",
// autoformat
2020-04-26 07:39:35 +02:00
"coc.preferences.formatOnSaveFiletypes": ["css", "markdown", "javascript", "graphql", "html", "yaml", "json", "python"],
2020-05-10 19:29:31 +02:00
"coc.preferences.hoverTarget": "float",
2020-04-26 07:39:35 +02:00
// python config
"python.linting.enabled": true,
"python.linting.pylintEnabled": true,
2020-05-10 19:29:31 +02:00
// snippets
2020-04-26 07:39:35 +02:00
"snippets.ultisnips.directories":
[
"UltiSnips",
"~/.config/nvim/utils/snips"
2020-04-26 20:17:15 +02:00
],
2020-04-26 07:39:35 +02:00
2020-04-26 20:17:15 +02:00
// explorer
"explorer.width": 30,
"explorer.icon.enableNerdfont": true,
"explorer.previewAction.onHover": false,
2020-05-10 19:29:31 +02:00
"explorer.icon.enableVimDevicons": true,
2020-04-26 20:17:15 +02:00
"explorer.keyMappings": {
"<cr>": ["expandable?", "expand", "open"],
"v": "open:vsplit"
2020-05-12 00:48:29 +02:00
},
"languageserver":{
"bash": {
"command": "bash-language-server",
"args": ["start"],
"filetypes": ["sh"],
"ignoredRootPaths": ["~"]
}
2020-04-26 20:17:15 +02:00
}
2020-05-10 19:29:31 +02:00
// TODO language servers
// TODO g:coc_global_extensions
// TODO b:coc_suggest_disable=1 GOYO
// TODO add to paths.vim g:coc_node_path
2020-04-26 07:39:35 +02:00
}