1
0
mirror of https://github.com/osmarks/random-stuff synced 2026-07-01 09:18:52 +00:00
Files
random-stuff/dotfiles/config.fish
T
2026-04-09 17:40:36 +01:00

42 lines
907 B
Fish

if status is-interactive
zoxide init fish | source
atuin init fish | source
end
if status is-login
and status is-interactive
# disabled for performance reasons
#keychain --eval $SSH_KEYS_TO_AUTOLOAD 2> /dev/null | source
end
functions -q real_cd; or functions -c cd real_cd
function cd
set -g PREV_PWD
real_cd $argv
end
function __project_jail_chpwd --on-variable PWD
if set -q NORECURSE
set -e NORECURSE
return
end
if set -q IN_PROJECT_JAIL
return
end
if test -x ~/.local/bin/project-jail
set -l back "$PREV_PWD"
test -n "$back"; or set back "$HOME"
if ~/.local/bin/project-jail
set -g NORECURSE
cd "$back"
end
end
end
# Also check once at shell startup.
if not set -q IN_PROJECT_JAIL
if test -x ~/.local/bin/project-jail
~/.local/bin/project-jail
end
end