diff --git a/functions/la.fish b/functions/la.fish deleted file mode 100644 index 2fc6812..0000000 --- a/functions/la.fish +++ /dev/null @@ -1,4 +0,0 @@ -# Defined in - @ line 1 -function la --wraps='ls -a' --description 'alias la=ls -a' - ls -a $argv; -end diff --git a/functions/ll.fish b/functions/ll.fish index 30b02fc..a191671 100644 --- a/functions/ll.fish +++ b/functions/ll.fish @@ -1,4 +1,3 @@ -# Defined in - @ line 1 -function ll --wraps='ls -al' --description 'alias ll=ls -al' - ls -al $argv; +function ll + ls --all --author --color --kibibytes --human-readable -l $argv; end