2023-10-25 00:52:19 -04:00
|
|
|
if status is-interactive
|
2023-10-25 01:40:08 -04:00
|
|
|
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
|
|
|
|
2023-11-26 06:00:56 -05: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
|