update: imac config

This commit is contained in:
2024-11-03 20:52:21 -05:00
parent 0316aaead6
commit 09c7389823
160 changed files with 10740 additions and 116 deletions
@@ -0,0 +1,13 @@
return function()
require("modules.utils").load_plugin("persisted", {
save_dir = vim.fn.expand(vim.fn.stdpath("data") .. "/sessions/"),
autostart = true,
-- Set `lazy = false` in `plugins/editor.lua` to enable this
autoload = false,
follow_cwd = true,
use_git_branch = true,
should_save = function()
return vim.bo.filetype == "alpha" and false or true
end,
})
end