1
0
mirror of https://github.com/Foltik/dotfiles synced 2025-01-07 08:42:47 -05:00

Add ssh alias to fish config

This commit is contained in:
Jack Foltz 2018-12-25 01:14:55 -05:00
parent b24d977b8b
commit 01b5b3d27e
Signed by: foltik
GPG Key ID: D1F0331758D1F29A

View File

@ -2,6 +2,9 @@
set -U fish_greeting
set -U fish_user_paths ~/.local/bin
# Mark fish as default shell
set -gx SHELL /usr/bin/fish
# TTY for gpg pinentry
set -gx GPG_TTY (tty)
gpg-connect-agent updatestartuptty /bye >/dev/null
@ -18,3 +21,7 @@ xkbcomp ~/.config/xkb/map.xkm $DISPLAY
function ls
exa $argv
end
function ssh
env TERM=xterm-256color ssh $argv
end