diff options
Diffstat (limited to '.config/nvim/lsp/roc_ls.lua')
-rw-r--r-- | .config/nvim/lsp/roc_ls.lua | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.config/nvim/lsp/roc_ls.lua b/.config/nvim/lsp/roc_ls.lua new file mode 100644 index 0000000..fd0c00b --- /dev/null +++ b/.config/nvim/lsp/roc_ls.lua @@ -0,0 +1,13 @@ +---@brief +--- +--- https://github.com/roc-lang/roc/tree/main/crates/language_server#roc_language_server +--- +--- The built-in language server for the Roc programming language. +--- [Installation](https://github.com/roc-lang/roc/tree/main/crates/language_server#installing) + +---@type vim.lsp.Config +return { + cmd = { 'roc_language_server' }, + filetypes = { 'roc' }, + root_markers = { '.git' }, +} |