blob: 15b887fb47bce7c414a03ae35c3aef0ad8c308f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  | 
---@brief
---
--- https://llvm.github.io/clangir
---
--- The Language Server for the LLVM ClangIR language
---
--- `cir-lsp-server` can be installed at the llvm-project repository (https://github.com/llvm/llvm-project)
---@type vim.lsp.Config
return {
  cmd = { 'cir-lsp-server' },
  filetypes = { 'cir' },
  root_markers = { '.git' },
}
  |