dotfiles/.config/fish/config.fish

16 lines
423 B
Fish
Raw Normal View History

2023-10-25 00:52:19 -04:00
if status is-interactive
set -gx EDITOR nvim
set -gx VISUAL nvim
set -gx QT_QPA_PLATFORMTHEME qt5ct
set -gx TERMINAL foot
set -gx MOZ_ENABLE_WAYLAND 1
set -gx _JAVA_AWT_WM_NONREPARENTING 1
2023-10-25 03:02:22 -04:00
if not pgrep -u "$USER" ssh-agent > /dev/null;
ssh-agent -c > "$XDG_RUNTIME_DIR/ssh-agent.env"
end
if [ -z $SSH_AUTH_SOCK ]
eval "$(cat $XDG_RUNTIME_DIR/ssh-agent.env)"
end
2023-10-25 00:52:19 -04:00
end