2024-06-14 14:14:58 -05:00
|
|
|
return require("util").if_exe("roc", {
|
2024-06-13 13:22:15 -05:00
|
|
|
{ "nvim-treesitter/nvim-treesitter", opts = { ensure_installed = { "roc" } } },
|
2024-06-12 10:25:28 -05:00
|
|
|
{
|
|
|
|
"neovim/nvim-lspconfig",
|
|
|
|
opts = {
|
|
|
|
servers = {
|
|
|
|
roc_ls = {
|
|
|
|
mason = false,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2024-06-14 14:14:58 -05:00
|
|
|
})
|