feat(odin): add odin lang extra

This commit is contained in:
givensuman 2026-06-12 11:48:36 -04:00
parent 459a4c3b10
commit c97fe7b31b

View file

@ -0,0 +1,20 @@
return {
recommended = function()
return LazyVim.extras.wants({
ft = "odin",
root = { "ols.json" },
})
end,
{
"nvim-treesitter/nvim-treesitter",
opts = { ensure_installed = { "odin" } },
},
{
"neovim/nvim-lspconfig",
opts = {
servers = {
ols = {},
},
},
},
}