mirror of
https://github.com/LazyVim/LazyVim.git
synced 2026-07-22 04:21:08 +00:00
Merge c97fe7b31b into 459a4c3b10
This commit is contained in:
commit
d71892ae41
1 changed files with 20 additions and 0 deletions
20
lua/lazyvim/plugins/extras/lang/odin.lua
Normal file
20
lua/lazyvim/plugins/extras/lang/odin.lua
Normal 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 = {},
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue