dotfiles/.config/nvim/lsp/cir_lsp_server.lua

15 lines
339 B
Lua
Raw Normal View History

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