summaryrefslogtreecommitdiff
path: root/.config/nvim/coc-settings.json
blob: 8636c1385dc12ac3b5ce568b0ae102ceee25d7b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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"
         }
      }
    }
  }
}