From 800d31c81b77d860d1293a890a4f2869507b7c92 Mon Sep 17 00:00:00 2001 From: Daniil Tsivinsky Date: Mon, 11 Oct 2021 19:47:34 +0300 Subject: [PATCH] Add coc-settings.json file --- nvim/coc-settings.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 nvim/coc-settings.json diff --git a/nvim/coc-settings.json b/nvim/coc-settings.json new file mode 100644 index 0000000..077ffb6 --- /dev/null +++ b/nvim/coc-settings.json @@ -0,0 +1,18 @@ +{ + "languageserver": { + "ccls": { + "command": "ccls", + "filetypes": ["c", "cpp", "cuda", "objc", "objcpp"], + "rootPatterns": [".ccls-root", "compile_commands.json"], + "initializationOptions": { + "cache": { + "directory": ".ccls-cache" + }, + "client": { + "snippetSupport": true + } + } + } + } +} +