defer and restore shada

This commit is contained in:
zbirenbaum 2022-01-30 23:33:15 -05:00 committed by siduck
parent bd98d76ad6
commit d8dabe9e5e
2 changed files with 8 additions and 0 deletions

View File

@ -26,6 +26,7 @@ M.options = {
updatetime = 250,
undofile = true,
fillchars = { eob = " " },
shadafile = vim.opt.shadafile,
-- NvChad options
nvChad = {

View File

@ -80,3 +80,10 @@ local disabled_built_ins = {
for _, plugin in pairs(disabled_built_ins) do
g["loaded_" .. plugin] = 1
end
--Defer loading shada until after startup_
vim.opt.shadafile = "NONE"
vim.schedule(function()
vim.opt.shadafile = require("core.utils").load_config().options.shadafile
vim.cmd [[ rsh ]]
end)