mirror of
https://github.com/Cian-H/dotfiles.git
synced 2025-12-26 20:51:56 +00:00
This change allows the dotfiles to work with chezmoi (e.g: on windows) and improves grepability with neovim/telescope
19 lines
440 B
Nu
19 lines
440 B
Nu
let m_table = (
|
|
[
|
|
['name', 'tz', 'time'];
|
|
['andres' 'America/Guayaquil' ' ']
|
|
['fdncred' 'US/Central' ' ']
|
|
['gedge' 'US/Eastern' ' ']
|
|
['jt' 'NZ' ' ']
|
|
['wycats' 'US/Pacific' ' ']
|
|
['kubouch' 'Europe/Helsinki' ' ']
|
|
['elferherrera' 'Europe/London' ' ']
|
|
['storm' 'US/Pacific' ' ']
|
|
]
|
|
)
|
|
let now = (date now)
|
|
$m_table | update time {|row|
|
|
$now | date to-timezone ($row | get tz) | format date '%c'
|
|
}
|
|
|