nVim/lua/core/init.lua
Robert Morrison 8d30935771 fix(treesitter): Make Treesitter install on start
Recent changes to treesitter have made it so that it cannot
automatically install the languages you want. As such I have cobbled
together this script to make it work right for me.
2025-12-21 20:40:41 +00:00

17 lines
318 B
Lua

local M = {}
M.setup = function()
require("core.options")
require("core.autocommands")
require("core.filetypes")
require("plugins.lazy")
-- Load this after loading plugins to ensure default lspconfig is there
require("core.lspconfig")
require("core.treesitter")
vim.cmd.colorscheme("gruvbox")
end
return M