diff options
Diffstat (limited to 'dot_config/nvim_new/lsp/roc_ls.lua')
| -rw-r--r-- | dot_config/nvim_new/lsp/roc_ls.lua | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/dot_config/nvim_new/lsp/roc_ls.lua b/dot_config/nvim_new/lsp/roc_ls.lua new file mode 100644 index 0000000..fb0921a --- /dev/null +++ b/dot_config/nvim_new/lsp/roc_ls.lua @@ -0,0 +1,11 @@ +---@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) +return { + cmd = { 'roc_language_server' }, + filetypes = { 'roc' }, + root_markers = { '.git' }, +} |
