From 4e75da0c33033251d593f3254013984e9dfdc9a8 Mon Sep 17 00:00:00 2001 From: z3rOR0ne Date: Sun, 14 Nov 2021 04:04:06 -0800 Subject: [PATCH] removed python settings in coc-settings.json --- nvim/coc-settings.json | 68 +----------------------------------------- 1 file changed, 1 insertion(+), 67 deletions(-) diff --git a/nvim/coc-settings.json b/nvim/coc-settings.json index 85e68ef4..08f6313d 100644 --- a/nvim/coc-settings.json +++ b/nvim/coc-settings.json @@ -41,72 +41,6 @@ "command": "rust-analyzer", "filetypes": ["rust"], "rootPatterns": ["Cargo.toml"] - }, - "python": { - "command": "python", - "args": [ - "-mpyls", - "-vv", - "--log-file", - "/tmp/lsp_python.log" - ], - "trace.server": "verbose", - "filetypes": [ - "python" - ], - "settings": { - "pyls": { - "enable": true, - "trace": { - "server": "verbose" - }, - "commandPath": "", - "configurationSources": [ - "pycodestyle" - ], - "plugins": { - "jedi_completion": { - "enabled": true - }, - "jedi_hover": { - "enabled": true - }, - "jedi_references": { - "enabled": true - }, - "jedi_signature_help": { - "enabled": true - }, - "jedi_symbols": { - "enabled": true, - "all_scopes": true - }, - "mccabe": { - "enabled": true, - "threshold": 15 - }, - "preload": { - "enabled": true - }, - "pycodestyle": { - "enabled": true - }, - "pydocstyle": { - "enabled": false, - "match": "(?!test_).*\\.py", - "matchDir": "[^\\.].*" - }, - "pyflakes": { - "enabled": true - }, - "rope_completion": { - "enabled": true - }, - "yapf": { - "enabled": true - } - } - } } - }, + } }