Add aliases

This commit is contained in:
Oliver Davies 2016-06-13 20:58:48 +01:00
parent 6a481179b1
commit 3897690c04
5 changed files with 15 additions and 0 deletions

3
aliases/ga.fish Normal file
View file

@ -0,0 +1,3 @@
function ga
git add -p $argv;
end

3
aliases/gc.fish Normal file
View file

@ -0,0 +1,3 @@
function gc
git commit $argv;
end

3
aliases/gs.fish Normal file
View file

@ -0,0 +1,3 @@
function gs
git status -sb $argv;
end

3
aliases/l.fish Normal file
View file

@ -0,0 +1,3 @@
function l
ls -ltrh $argv;
end

3
aliases/v.fish Normal file
View file

@ -0,0 +1,3 @@
function v
vagrant $argv;
end