This commit is contained in:
David Chen 2019-09-13 09:14:01 +08:00
parent 3707d2c3d5
commit 354d23f3f8
8 changed files with 25 additions and 6 deletions

View file

@ -0,0 +1,4 @@
# Defined in - @ line 1
function cdiff --description 'alias cdiff colordiff'
colordiff $argv;
end

View file

@ -1,4 +0,0 @@
# Defined in - @ line 1
function diff --description 'alias diff colordiff'
colordiff $argv;
end

4
fish/functions/fzf.fish Normal file
View file

@ -0,0 +1,4 @@
# Defined in - @ line 1
function fzf --description alias\ fzf\ fzf\ --preview\ \'head\ -100\ \{\}\'
command fzf --preview 'head -100 {}' $argv;
end

4
fish/functions/gc.fish Normal file
View file

@ -0,0 +1,4 @@
# Defined in - @ line 1
function gc --description 'alias gc git config credential.helper store'
git config credential.helper store $argv;
end