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.
17 lines
318 B
Lua
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
|