summaryrefslogtreecommitdiff
path: root/coc-settings.json
diff options
context:
space:
mode:
Diffstat (limited to 'coc-settings.json')
-rw-r--r--coc-settings.json155
1 files changed, 0 insertions, 155 deletions
diff --git a/coc-settings.json b/coc-settings.json
deleted file mode 100644
index d8ae6d80..00000000
--- a/coc-settings.json
+++ /dev/null
@@ -1,155 +0,0 @@
-{
- // suggestions
- // "suggest.echodocSupport": true,
-/* https://code.visualstudio.com/docs/editor/intellisense reference for vscode symbols*/
-/* https://www.nerdfonts.com/cheat-sheet reference to find some other symbols*/
- /* some symbols you might like: ī­„  ī…›  ī€ĸ īŖ– īšĻ  īšĨ ī™ ī…‡  ī‚– īž” ī‹’   */
- /* fb44 this is the hex for nf-mdi-file_tree, should be good for class*/
- "suggest.completionItemKindLabels": {
- "method": "  ",
- "function": "  ",
- "variable": "[]",
- "field": "  ",
- "typeParameter": "<īžƒ>",
- "constant": " ī›ŧ ",
- "class": " ī – ",
- "interface": " ",
- "struct": "  ",
- "event": "  ",
- "operator": " īš” ",
- "module": "  ",
- "property": " ī‚­ ",
- "enum": " īŠ—",
- "reference": "  ",
- "keyword": " ī§ ",
- "file": " ī…› ",
- "folder": " īąŽ ",
- "color": " îˆĢ ",
- "unit": " īĨŦ ",
- "snippet": " ī— ",
- "text": " ī”Ģ ",
- "constructor": "  ",
- "value": " īĸŸ ",
- "enumMember": " ī… ",
- "default": "  "
- },
- "snippets.priority": 1,
- //"yank.priority": 1,
- "suggest.languageSourcePriority": 99,
- "coc.source.file.priority": 2,
- "coc.source.around.priority": 3,
- "coc.source.buffer.priority": 4,
-
- // diagnostics
- "diagnostic.errorSign": "ī€ ",
- "diagnostic.warningSign": "īą ",
- "diagnostic.infoSign": "ī„Š",
- "diagnostic.hintSign": "ī‚­ ",
- // "diagnostic.displayByAle": true,
- // "diagnostic.virtualText": true, // this won't work with codelens when error on same line
-
- // codelens
- "codeLens.enable": true,
- "java.referencesCodeLens.enabled": true,
- "java.implementationsCodeLens.enabled": true,
- "java.completion.enabled": true,
- "java.jdt.ls.vmargs": "-javaagent:/usr/local/share/lombok/lombok.jar",
-
- // list
- "list.indicator": ">",
- "list.selectedSignText": "ī€Œ ",
-
- // autoformat
- "coc.preferences.formatOnSaveFiletypes": [
- "css",
- "markdown",
- "javascript",
- "graphql",
- "html",
- "yaml",
- "json",
- "python",
- "java"
- ],
- "coc.preferences.hoverTarget": "float",
-
- // python config
- "python.analysis.autoImportCompletions": true,
- "python.analysis.autoSearchPaths": true,
- "python.analysis.diagnosticMode": "openFilesOnly",
- "python.analysis.stubPath": "typings",
- "python.analysis.typeshedPaths": [],
- "python.analysis.diagnosticSeverityOverrides": {},
- "python.analysis.typeCheckingMode": "basic",
- "python.analysis.useLibraryCodeForTypes": true,
- "python.pythonPath": "python",
- "python.venvPath": "",
- "python.formatting.provider": "black",
- "python.formatting.blackPath": "~/.local/bin/black",
- "python.formatting.blackArgs": [],
- "python.formatting.autopep8Path": "autopep8",
- "python.formatting.autopep8Args": [],
- "python.formatting.yapfPath": "yapf",
- "python.formatting.yapfArgs": [],
- "python.linting.enabled": true,
- "python.linting.flake8Enabled": false,
- "python.linting.banditEnabled": false,
- "python.linting.mypyEnabled": false,
- "python.linting.pytypeEnabled": false,
- "python.linting.prospectorEnabled": false,
- "python.linting.pydocstyleEnabled": false,
- "python.linting.pylamaEnabled": false,
- "python.linting.pylintEnabled": false,
-
- // snippets
- "snippets.ultisnips.directories": ["UltiSnips", "~/.config/nvim/snips"],
- //"snippets.userSnippetsDirectory": "~/.config/nvim/snips",
-
- // emmet
- "emmet.includeLanguages": {
- "vue-html": "html",
- "javascript": "javascriptreact"
- },
-
- // CSS (disable since I'm also using stylelintplus)
- "css.validate": false,
- "less.validate": false,
- "scss.validate": false,
- "wxss.validate": false,
-
- // explorer
- "explorer.width": 30,
- "explorer.file.root.template": "[icon] [git] [hidden & 1][root]",
- "explorer.icon.enableNerdfont": true,
- "explorer.previewAction.onHover": false,
- "explorer.icon.enableVimDevicons": false,
- "explorer.file.showHiddenFiles": false,
- "explorer.keyMappings.global": {
- "<cr>": ["expandable?", "expand", "open"],
- "v": "open:vsplit"
- },
-
- /* "languageserver": { */
- /* "lua": { */
- /* "command": "/home/chris/.luambenvs/neovim4/bin/lua-lsp", */
- /* "filetypes": ["lua"], */
- /* "trace.server": "verbose" */
- /* } */
- /* }, */
-
- //coc-emoji
- "coc.source.emoji.filetypes": ["markdown"]
-
- // lua
- //"lua.useSumnekoLs": true,
- //"lua.commandPath": "/home/chris/.luambenvs/neovim3/bin/lua-lsp"
- //"lua.enable": true,
- //"Lua.completion.enable": true,
- //"Lua.runtime.version": "Lua 5.1",
- //"Lua.runtime.path": ["?.lua", "?/init.lua", "?/?.lua"],
- //"lua.version": "5.1"
- //"lua.commandPath": "/home/chris/.vscode-insiders/extensions/sumneko.lua-1.0.5/server/bin/Linux/lua-language-server"
-
- // TODO b:coc_suggest_disable=1 GOYO
- // TODO add to paths.vim g:coc_node_path
-}