summary refs log tree commit diff
path: root/.vim/coc-settings.json
diff options
context:
space:
mode:
Diffstat (limited to '.vim/coc-settings.json')
-rw-r--r--.vim/coc-settings.json82
1 files changed, 0 insertions, 82 deletions
diff --git a/.vim/coc-settings.json b/.vim/coc-settings.json
deleted file mode 100644
index 6bf350b..0000000
--- a/.vim/coc-settings.json
+++ /dev/null
@@ -1,82 +0,0 @@
-{
-  "coc.preferences.snippets.enable": true,
-  "coc.preferences.formatOnType": false,
-  "coc.preferences.formatOnSaveFiletypes": [],
-  "coc.preferences.hoverTarget": "float",
-  "coc.preferences.enableFloatHighlight": true,
-  "coc.preferences.extensionUpdateCheck": "never",
-
-  "list.signOffset": 900,
-
-  "suggest.autoTrigger": "always",
-  "suggest.triggerAfterInsertEnter": true,
-  "suggest.minTriggerInputLength": 1,
-  "suggest.noselect": true,
-  "suggest.enablePreview": true,
-  "suggest.enablePreselect": false,
-  "suggest.floatEnable": true,
-
-  "signature.enable": true,
-  "signature.target": "float",
-  "signature.preferShownAbove": true,
-
-  "diagnostic.enable": true,
-  "diagnostic.checkCurrentLine": false,
-  "diagnostic.virtualText": true,
-  "diagnostic.virtualTextLines": 1,
-  "diagnostic.messageTarget": "float",
-  "diagnostic.level": "hint",
-  "diagnostic.enableSign": true,
-  "diagnostic.errorSign": "✘",
-  "diagnostic.warningSign": "‼",
-  "diagnostic.infoSign": "i",
-  "diagnostic.hintSign": "☛",
-
-  "rust-client.channel": "stable",
-  "rust-client.rlsPath": "ra_lsp_server",
-
-  "python.linting.flake8Enabled": false,
-  "python.linting.pylintEnabled": true,
-
-  "languageserver": {
-    "gopls": {
-      "enable": false,
-      "command": "gopls",
-      "rootPatterns": ["go.mod", ".git/", ".hg/"],
-      "filetypes": ["go"]
-    },
-    "go-langserver": {
-      "enable": false,
-      "command": "go-langserver",
-      "initializationOptions": {
-        "gocodeCompletionEnabled": true,
-        "diagnosticsEnabled": true,
-        "lintTool": "golint"
-      },
-      "filetypes": ["go"]
-    },
-    "ccls": {
-      "enable": false,
-      "command": "ccls",
-      "rootPatterns": [".ccls", "compile_commands.json", ".git/", ".hg/"],
-      "initializationOptions": {
-        "cache": {
-          "directory": "/tmp/ccls"
-        }
-      },
-      "filetypes": ["c", "cpp", "objc", "objcpp"]
-    },
-    "rust-analyzer": {
-      "enable": false,
-      "command": "ra_lsp_server",
-      "rootPatterns": ["Cargo.toml", "Cargo.lock", ".git/"],
-      "filetypes": ["rust"]
-    },
-    "efm": {
-      "enable": false,
-      "command": "efm-langserver",
-      "args": [],
-      "filetypes": ["vim", "markdown", "yaml"]
-    }
-  }
-}