blob: f335a9e5ce71e8b8b47bb0d92014e74ff1868b39 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
if status is-interactive
# Commands to run in interactive sessions can go here
if tty | string match "/dev/tty1"
$HOME/start
end
end
# bun
set --export BUN_INSTALL "$HOME/.bun"
set --export GOPATH "$HOME/go"
set --export PATH $BUN_INSTALL/bin $GOPATH/bin $HOME/.local/bin $PATH
# gpg
export GPG_TTY=$(tty)
|