diff options
author | listout <listout@protonmail.com> | 2021-09-15 17:21:42 +0530 |
---|---|---|
committer | listout <listout@protonmail.com> | 2021-09-15 17:21:42 +0530 |
commit | 75791df7b9bacf311e3f4d78bb7199cc62f0078e (patch) | |
tree | 0625bafd0b1063b18106c2f8b1050748c2109fb0 /coc-settings.json | |
parent | 2de6e390c35411634198cc65099daeb983ffecb1 (diff) |
Removing languager server
Use the `CocLocalConfig` to setup the language server.
This way, the main config does not become dependent on
a specific LS. The local config will be merged with the
global one.
Diffstat (limited to 'coc-settings.json')
-rw-r--r-- | coc-settings.json | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/coc-settings.json b/coc-settings.json index 9be1360..6cbca54 100644 --- a/coc-settings.json +++ b/coc-settings.json @@ -13,7 +13,6 @@ "markdown", "markdown.pandoc" ], - "clangd.semanticHighlighting": true, "coc.preferences.formatOnSaveFiletypes": [ "java", "c", @@ -28,10 +27,6 @@ "diagnostic.enableSign": false, "diagnostic.refreshOnInsertMode": true, "diagnostic.messageTarget": "float", - "python.formatting.autopep8Args": [ - "--aggressive", - "--aggressive" - ], "signature.target": "echo", "session.directory": "~/.config/nvim/sessions", "session.saveOnVimLeave": false, @@ -54,32 +49,5 @@ "markdown.pandoc": [ "tex" ] - }, - "languageserver": { - "ccls": { - "command": "ccls", - "filetypes": [ - "c", - "cc", - "cpp", - "c++", - "objc", - "objcpp" - ], - "rootPatterns": [ - ".ccls", - "compile_commands.json", - ".git/", - ".hg/" - ], - "initializationOptions": { - "cache": { - "directory": "/tmp/ccls" - }, - "highlight": { - "lsRanges": true - } - } - } } } |