Played around with yazi and now the config is tight

Lots of new Keymaps
This commit is contained in:
Thomas Naderer
2025-07-07 15:34:51 +02:00
parent 53755eedfb
commit 6be4953be2
21 changed files with 1050 additions and 9 deletions

View File

@@ -0,0 +1,11 @@
local function get_date()
return os.date("%Y-%m-%d")
end
return {
name = "create_date_folder",
entry = function()
local date_folder = get_date()
os.execute("mkdir -p " .. vim.fn.shellescape(date_folder))
end
}