LunarVim/coc-settings.json

69 lines
1.5 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,
2020-05-12 17:31:12 +02:00
// TODO add more labels and give them cool glyphs
"suggest.completionItemKindLabels": {
"text": "t",
"method": "m",
"function": "f"
},
2020-05-10 19:29:31 +02:00
// 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-05-12 17:31:12 +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-05-12 17:31:12 +02:00
"snippets.ultisnips.directories": ["UltiSnips", "~/.config/nvim/utils/snips"],
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-12 17:31:12 +02:00
"explorer.icon.enableVimDevicons": false,
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
},
2020-05-12 17:31:12 +02:00
"languageserver": {
2020-05-12 00:48:29 +02:00
"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
}