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>
18 lines
370 B
Lua
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
|