Add options to not save some filetypes in auto session Remove CMP from command line and search, alsow update wilemenu Remove Oil.nvim and make nvim-tree the default file explorer Add some git pickers from telescope
14 lines
317 B
Lua
14 lines
317 B
Lua
return {
|
|
-- sessions
|
|
"rmagatti/auto-session",
|
|
config = function()
|
|
---@diagnostic disable-next-line: missing-fields
|
|
require("auto-session").setup({
|
|
log_level = "error",
|
|
auto_session_suppress_dirs = { "~/", "~/Downloads", "/" },
|
|
bypass_session_save_file_types = {
|
|
"NeogitStatus",
|
|
},
|
|
})
|
|
end,
|
|
}
|