diff --git a/lua/lazyvim/plugins/extras/lang/odin.lua b/lua/lazyvim/plugins/extras/lang/odin.lua new file mode 100644 index 00000000..673268d3 --- /dev/null +++ b/lua/lazyvim/plugins/extras/lang/odin.lua @@ -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 = {}, + }, + }, + }, +}