dotfiles/home/private_dot_config/nvim/lua/plugins/language/roc.lua

14 lines
264 B
Lua
Raw Normal View History

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