diff --git a/.config/fish/functions/ll.fish b/.config/fish/functions/ll.fish new file mode 100644 index 0000000..2d81201 --- /dev/null +++ b/.config/fish/functions/ll.fish @@ -0,0 +1,4 @@ +function ll --wraps='lsd -alh' --description 'alias ll lsd -alh' + lsd -alh $argv + +end diff --git a/.config/fish/functions/sll.fish b/.config/fish/functions/sll.fish new file mode 100644 index 0000000..4fe0438 --- /dev/null +++ b/.config/fish/functions/sll.fish @@ -0,0 +1,4 @@ +function sll --wraps='sudo lsd -alh' --description 'alias sll sudo lsd -alh' + sudo lsd -alh $argv + +end