feat: add fish function
This commit is contained in:
parent
6f68979271
commit
1f25c0cc84
|
@ -0,0 +1,3 @@
|
||||||
|
function glow --description 'alias glow -p'
|
||||||
|
command glow -p $argv;
|
||||||
|
end
|
|
@ -0,0 +1,3 @@
|
||||||
|
function l1 --description 'alias l1 exa -1'
|
||||||
|
command exa -1 $argv;
|
||||||
|
end
|
|
@ -1,3 +1,3 @@
|
||||||
function ls --description 'alias ls exa --icons'
|
function ls --description 'alias ls exa'
|
||||||
command exa --icons $argv;
|
command exa --icons $argv;
|
||||||
end
|
end
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
function mount --description 'alias mount mount | column -t'
|
||||||
|
command mount $argv | column -t;
|
||||||
|
end
|
|
@ -0,0 +1,3 @@
|
||||||
|
function t --description 'Taskwarriror list'
|
||||||
|
command task $argv;
|
||||||
|
end
|
|
@ -0,0 +1,3 @@
|
||||||
|
function tc --description 'Taskwarriror calendar'
|
||||||
|
command task calendar $argv;
|
||||||
|
end
|
|
@ -0,0 +1,3 @@
|
||||||
|
function tl --description 'Taskwarriror long list'
|
||||||
|
command task long $argv;
|
||||||
|
end
|
|
@ -0,0 +1,3 @@
|
||||||
|
function tp --description 'Taskwarriror projects'
|
||||||
|
command task projects $argv;
|
||||||
|
end
|
|
@ -0,0 +1,3 @@
|
||||||
|
function ts --description 'Taskwarriror project summary'
|
||||||
|
command task summary $argv;
|
||||||
|
end
|
Loading…
Reference in New Issue