Files
dotfiles/yazi/scripts/create_date_folder.lua
Thomas Naderer 6be4953be2 Played around with yazi and now the config is tight
Lots of new Keymaps
2025-07-07 15:34:51 +02:00

12 lines
227 B
Lua

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
}