summaryrefslogtreecommitdiff
path: root/.config/nvim/coc-settings.json
diff options
context:
space:
mode:
Diffstat (limited to '.config/nvim/coc-settings.json')
-rw-r--r--.config/nvim/coc-settings.json22
1 files changed, 22 insertions, 0 deletions
diff --git a/.config/nvim/coc-settings.json b/.config/nvim/coc-settings.json
new file mode 100644
index 0000000..8636c13
--- /dev/null
+++ b/.config/nvim/coc-settings.json
@@ -0,0 +1,22 @@
+{
+ "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"
+ }
+ }
+ }
+ }
+}