kujiu (@uberwald)
8ca6287fb1
-> Passwords in KeePassXC (access by keyring) -> Neomutt + Aerc (mail) -> vdirsyncer + khal + khard (calendar and contacts) zsh -> fish -> poezio (XMPP) -> newsboat (RSS with FreshRSS) -> toot (Mastodon client) vim -> neovim (with lunarvim) -> nvimpager (pager based on neovim) -> konsole With Nightfox theme.
7 lines
220 B
Fish
7 lines
220 B
Fish
function _tide_parent_dirs --on-variable PWD
|
|
set -g _tide_parent_dirs (string escape (
|
|
for dir in (string split / -- $PWD)
|
|
set -la parts $dir
|
|
string join / -- $parts
|
|
end))
|
|
end
|