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

14 lines
233 B
Lua
Raw Normal View History

2025-01-06 14:51:50 -06:00
return {
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,
},
},
},
},
2025-01-06 14:51:50 -06:00
}