diff options
Diffstat (limited to '.config/nvim/lsp/cir_lsp_server.lua')
-rw-r--r-- | .config/nvim/lsp/cir_lsp_server.lua | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.config/nvim/lsp/cir_lsp_server.lua b/.config/nvim/lsp/cir_lsp_server.lua new file mode 100644 index 0000000..15b887f --- /dev/null +++ b/.config/nvim/lsp/cir_lsp_server.lua @@ -0,0 +1,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' }, +} |