aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/coc-settings.json
blob: 70a6f3416930c130be3e3cdea283f8c0ad446a40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
	"languageserver": {
		"ccls": {
			"command": "ccls",
			"filetypes": ["c", "cc", "cpp", "c++", "objc", "objcpp"],
			"rootPatterns": [".ccls", "compile_commands.json", ".git/", ".hg/"],
			"initializationOptions": {
				"cache": {
					"directory": "/tmp/ccls"
				}
			}
		}
	}
}