mirror of
https://tildegit.org/ben/dotfiles.git
synced 2025-04-04 20:03:23 +00:00
51 lines
1.1 KiB
Fish
51 lines
1.1 KiB
Fish
set -xg EDITOR vim
|
|
set -xg TZ 'America/Detroit'
|
|
|
|
if test -d ~/Maildir
|
|
set -x MAIL ~/Maildir
|
|
end
|
|
|
|
for i in ~/bin ~/.local/bin ~/.rbenv/bin ~/.rbenv/shims ~/.cargo/bin ~/.yarn/bin ~/go/bin ~/.dotnet/tools
|
|
fish_add_path --path $i
|
|
end
|
|
|
|
# add rbenv paths
|
|
if status --is-interactive && type -q rbenv
|
|
set -gx RBENV_SHELL fish
|
|
source '/usr/lib/rbenv/completions/rbenv.fish'
|
|
|
|
command rbenv rehash 2>/dev/null
|
|
|
|
function rbenv
|
|
set command $argv[1]
|
|
set -e argv[1]
|
|
|
|
switch "$command"
|
|
case rehash shell
|
|
source (rbenv "sh-$command" $argv|psub)
|
|
case '*'
|
|
command rbenv "$command" $argv
|
|
end
|
|
end
|
|
end
|
|
|
|
#set -x SSH_AGENT_PID ""
|
|
if test -S $HOME/.gnupg/S.gpg-agent
|
|
set -x SSH_AUTH_SOCK $HOME/.gnupg/S.gpg-agent
|
|
set -x GPG_SOCK $HOME/.gnupg/S.gpg-agent
|
|
else
|
|
type -q gpgconf && set -x SSH_AUTH_SOCK (gpgconf --list-dirs agent-ssh-socket)
|
|
end
|
|
|
|
set -x BBJ_USER $USER
|
|
set -x DEBEMAIL ben@tilde.team
|
|
set -x DEBFULLNAME "Ben Harris"
|
|
|
|
# add dotnet completions if needed
|
|
if status --is-interactive && type -q dotnet
|
|
complete -f -c dotnet -a "(dotnet complete)"
|
|
end
|
|
|
|
status --is-login && status --is-interactive && exec byobu-launcher
|
|
|