diff options
Diffstat (limited to '.config/nvim/lsp/c3_lsp.lua')
-rw-r--r-- | .config/nvim/lsp/c3_lsp.lua | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.config/nvim/lsp/c3_lsp.lua b/.config/nvim/lsp/c3_lsp.lua new file mode 100644 index 0000000..0ea9522 --- /dev/null +++ b/.config/nvim/lsp/c3_lsp.lua @@ -0,0 +1,12 @@ +---@brief +--- +--- https://github.com/pherrymason/c3-lsp +--- +--- Language Server for c3. + +---@type vim.lsp.Config +return { + cmd = { 'c3lsp' }, + root_markers = { 'project.json', 'manifest.json', '.git' }, + filetypes = { 'c3', 'c3i' }, +} |