nvim/lsp/cir_lsp_server.lua
2025-09-22 16:07:34 +02:00

14 lines
339 B
Lua

---@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' },
}