summaryrefslogtreecommitdiff
path: root/.config/nvim/lsp/clangd.lua
blob: ad2b6697c06534892f092011a9fa1ae32ff4577b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
return {
  cmd = { "clangd" },
  root_markers = { ".clangd", "compile_commands.json" },
  init_options = { clangdFilestatus = true },
  filetypes = { "c", "cpp" },
  capabilities = {
    textDocument = {
      semanticTokens = {
        multilineTokenSupport = true,
      }
    }
  }
}