Muh dotfiles

This commit is contained in:
2025-05-10 10:18:28 +03:00
commit 0f4558597e
84 changed files with 4306 additions and 0 deletions

10
.config/yazi/init.lua Normal file
View File

@ -0,0 +1,10 @@
function Linemode:mtime()
local time = math.floor(self._file.cha.mtime or 0)
if time == 0 then
return ""
elseif os.date("%Y", time) == os.date("%Y") then
return os.date("%d %b %H:%M", time)
else
return os.date("%d %b %y", time)
end
end