mirror of
https://github.com/Ascyii/dotfiles.git
synced 2026-01-01 06:54:24 -05:00
19 lines
419 B
Lua
19 lines
419 B
Lua
-- ~/.config/yazi/init.lua
|
|
require("bookmarks"):setup({
|
|
last_directory = { enable = true, persist = true, mode="dir" },
|
|
persist = "all",
|
|
desc_format = "full",
|
|
file_pick_mode = "hover",
|
|
custom_desc_input = false,
|
|
notify = {
|
|
enable = true,
|
|
timeout = 1,
|
|
message = {
|
|
new = "New bookmark '<key>' -> '<folder>'",
|
|
delete = "Deleted bookmark in '<key>'",
|
|
delete_all = "Deleted all bookmarks",
|
|
},
|
|
},
|
|
})
|
|
|