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