Adding fish.

This commit is contained in:
Shaun Setlock
2022-01-03 22:03:28 -05:00
parent 2a6b42c411
commit 276cd206da
3 changed files with 43 additions and 0 deletions

4
fish/functions/ll.fish Normal file
View File

@@ -0,0 +1,4 @@
# Defined in - @ line 1
function ll --wraps='ls -lah' --description 'alias ll=ls -lah'
ls -lah $argv;
end