summaryrefslogtreecommitdiff
path: root/.config/nvim/coc-settings.json
diff options
context:
space:
mode:
authorMatt Turner <mattst88@framework.mattst88.com>2023-03-06 11:12:20 -0500
committerMatt Turner <mattst88@gmail.com>2023-03-06 11:18:37 -0500
commit01204fff758637398ce3a9d2b6ca20038016e45b (patch)
treeec1e65f28390437a4c6a07cbf6a507304cc1bd8d /.config/nvim/coc-settings.json
parente83765747e2f4411189dbae392b5e197fdf8744b (diff)
Rearrange for better usage with GNU stow
Diffstat (limited to '.config/nvim/coc-settings.json')
-rw-r--r--.config/nvim/coc-settings.json89
1 files changed, 0 insertions, 89 deletions
diff --git a/.config/nvim/coc-settings.json b/.config/nvim/coc-settings.json
deleted file mode 100644
index 18223ed..0000000
--- a/.config/nvim/coc-settings.json
+++ /dev/null
@@ -1,89 +0,0 @@
-{
- "python.linting.pylintEnabled": true,
- "python.linting.flake8Enabled": false,
- "python.linting.enabled": true,
- "python.pythonPath": "/usr/bin/python",
-
- "languageserver": {
- "ccls": {
- "command": "ccls",
- "filetypes": ["c", "cpp", "cuda", "objc", "objcpp"],
- "rootPatterns": [".ccls-root", ".git/"],
- "initializationOptions": {
- "highlight": {
- "lsRanges": true
- },
- "cache": {
- "directory": ".ccls-cache"
- }
- }
- },
- "python": {
- "command": "python",
- "args": [
- "-mpylsp",
- "-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
- }
- }
- }
- }
- }
- }
-}