blob: 6b6cb53e5ec38b33e38782df26a04b6aa19d6cca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# Vim stuff
alias vim "nvim"
set -x EDITOR nvim
set -x SUDO_EDITOR nvim
# Path
set -x PATH $PATH $HOME/go/bin
# Functions
function gittr
if test (count $argv) -lt 1
git push -u origin HEAD
else
git push -u $argv[1] HEAD
end
end
|