Adjusting COC

This commit is contained in:
2025-09-12 12:27:37 -04:00
parent 8954b671f6
commit 09c8354089
2 changed files with 14 additions and 6 deletions

View File

@@ -10,7 +10,7 @@
"coc-json", "coc-json",
"coc-html", "coc-html",
"coc-css", "coc-css",
"coc-python", "coc-pylsp",
"coc-clangd", "coc-clangd",
"coc-rust-analyzer", "coc-rust-analyzer",
"coc-yaml", "coc-yaml",
@@ -23,10 +23,18 @@
"coc-markdownlint", "coc-markdownlint",
"coc-vimlsp" "coc-vimlsp"
], ],
"pyright.enable": true, "pylsp.enable": true,
"python.analysis.autoImportCompletions": true, "pylsp.plugins.pycodestyle.enabled": false,
"python.analysis.autoSearchPaths": true, "pylsp.plugins.mccabe.enabled": false,
"python.analysis.diagnosticMode": "workspace", "pylsp.plugins.pyflakes.enabled": true,
"pylsp.plugins.pylint.enabled": false,
"pylsp.plugins.autopep8.enabled": false,
"pylsp.plugins.yapf.enabled": false,
"pylsp.plugins.jedi_completion.enabled": true,
"pylsp.plugins.jedi_hover.enabled": true,
"pylsp.plugins.jedi_references.enabled": true,
"pylsp.plugins.jedi_signature_help.enabled": true,
"pylsp.plugins.jedi_symbols.enabled": true,
"rust-analyzer.enable": true, "rust-analyzer.enable": true,
"rust-analyzer.cargo.loadOutDirsFromCheck": true, "rust-analyzer.cargo.loadOutDirsFromCheck": true,
"rust-analyzer.procMacro.enable": true, "rust-analyzer.procMacro.enable": true,

View File

@@ -3,7 +3,7 @@ vim.g.coc_global_extensions = {
'coc-json', 'coc-json',
'coc-html', 'coc-html',
'coc-css', 'coc-css',
'coc-python', 'coc-pylsp',
'coc-clangd', 'coc-clangd',
'coc-rust-analyzer', 'coc-rust-analyzer',
'coc-yaml', 'coc-yaml',