yazi config

This commit is contained in:
thek4n 2026-07-17 12:43:59 +03:00
parent ee76511d46
commit a759ae2228
2 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,13 @@
function Linemode:size_and_mtime()
local time = math.floor(self._file.cha.mtime or 0)
if time == 0 then
time = ""
elseif os.date("%Y", time) == os.date("%Y") then
time = os.date("%b %d %H:%M", time)
else
time = os.date("%b %d %Y", time)
end
local size = self._file:size()
return string.format("%s %s", size and ya.readable_size(size) or "-", time)
end

View File

@ -0,0 +1,4 @@
[mgr]
sort_by = "natural"
sort_dir_first = false
linemode = "size_and_mtime"