AutoYADM commit: 2025-03-16 16:00:07

This commit is contained in:
Daniel Fichtinger 2025-03-16 16:00:07 -04:00
parent 6decf69970
commit b0bb177c13
3 changed files with 87 additions and 2 deletions

View file

@ -1,6 +1,43 @@
require("custom-shell"):setup({
history_path = "default",
save_history = true,
history_path = "default",
save_history = true,
})
require("git"):setup()
-- require("starship"):setup()
local bookmarks = {}
local home = os.getenv("HOME")
table.insert(bookmarks, {
tag = "Documents",
path = home .. "/Documents/",
key = "d"
})
table.insert(bookmarks, {
tag = "SyncDocuments",
path = home .. "/SyncDocuments/",
key = "s"
})
table.insert(bookmarks, {
tag = "Pictures",
path = home .. "/Pictures/",
key = "p"
})
table.insert(bookmarks, {
tag = "Downloads",
path = home .. "/Downloads/",
key = "D"
})
table.insert(bookmarks, {
tag = "Videos",
path = home .. "/Videos/",
key = "v"
})
require("yamb"):setup({
bookmarks = bookmarks,
jump_notify = true,
cli = "fzf",
keys = "tnseriplfuwydhcxoaqz",
path = home .. "/.config/yazi/bookmark",
})