123456789101112131415161718 |
- set -gx EDITOR (type -p vim)
- set -gx GOPATH ~/bench/go
- #set -gx PATH $PATH:/usr/local/go/bin
- set -gx PATH $PATH:/home/jord/.local/bin
- alias gs="git status"
- alias gd="git diff"
- alias ga="git add"
- alias gc="git commit"
- alias gpo="git push origin"
- #startx at login
- if status is-login
- if test -z "$DISPLAY" -a "$XDG_VTNR" = 1
- exec startx -- -keeptty
- end
- end
|