Update dots:

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
This commit is contained in:
Alexander Navarro 2023-11-15 19:48:26 -03:00
parent ea8bd3a653
commit 9c023c015c
8 changed files with 21 additions and 73 deletions

View file

@ -2,9 +2,13 @@ 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,
}