NIVM/lua/core/init.lua
Robert Morrison fb537df11b chore(init): Initial working version
Create and push an initial working version of this repo before I change
things on this machine

Signed-off-by: Robert Morrison <robert@closedless.xyz>
2023-09-10 22:22:30 +01:00

18 lines
370 B
Lua

local M = {}
M.setup = function()
require('core.options')
require('core.autocommands')
require('core.keybinds')
require('core.hacks.cellWidths')
require('plugins')
-- always run this last to ensure it ovverides earlier settings
require('sherlock5512.colourSwitch')
-- Load colourscheme only after loading plugins
vim.cmd.colorscheme('gruvbox')
end
return M