diff --git a/config/fish/alias.fish b/config/fish/alias.fish index 4a4ad57..fef883f 100644 --- a/config/fish/alias.fish +++ b/config/fish/alias.fish @@ -2,3 +2,30 @@ alias vim='vim -u "$XDG_CONFIG_HOME/vim/vimrc"' +# eza aliases if eza is installed +if type -q eza > /dev/null + + function eza_git -d "Use eza and its git options if in a git repo" + if git rev-parse --is-inside-work-tree &>/dev/null + eza --group-directories-first --icons=always --smart-group --git $argv + else + eza --group-directories-first --icons=always --smart-group $argv + end + end + + function lsa --wraps='eza_git -al' --description 'eza -al' + eza_git -al $argv + end + + function ls --wraps='eza_git' --description 'eza' + eza_git $argv + end + + function ll --wraps='eza_git -l' --description 'eza -l' + eza_git -l $argv + end + + function l --wraps='eza_git' --description 'eza' + eza_git $argv + end +end diff --git a/config/fish/conf.d/fish-eza.fish b/config/fish/conf.d/fish-eza.fish deleted file mode 100644 index 545ef78..0000000 --- a/config/fish/conf.d/fish-eza.fish +++ /dev/null @@ -1,87 +0,0 @@ -function __fish_eza_install --on-event fish-eza_install - set -Ux __FISH_EZA_BASE_ALIASES l ll lg le lt lc lo - set -Ux __FISH_EZA_EXPANDED a d i id aa ad ai aid aad aai aaid - set -Ux __FISH_EZA_EXPANDED_OPT_NAME LA LD LI LID LAA LAD LAI LAID LAAD LAAI LAAID - set -Ux __FISH_EZA_OPT_NAMES - set -Ux __FISH_EZA_ALIASES - set -Ux __FISH_EZA_SORT_OPTIONS name .name size ext mod old acc cr inode - - set -Ux EZA_STANDARD_OPTIONS "--group" "--header" "--group-directories-first" - - # Base aliases - set -Ux EZA_L_OPTIONS - set -Ux EZA_LL_OPTIONS "--long" - set -Ux EZA_LG_OPTIONS "--git" "--git-ignore" "--long" - set -Ux EZA_LE_OPTIONS "--extended" "--long" - set -Ux EZA_LT_OPTIONS "--tree" "--level" - set -Ux EZA_LC_OPTIONS "--across" - set -Ux EZA_LO_OPTIONS "--oneline" - - # Extended aliases - set -Ux EZA_LI_OPTIONS "--icons" - set -Ux EZA_LD_OPTIONS "--only-dirs" - set -Ux EZA_LID_OPTIONS "--icons" "--only-dirs" - set -Ux EZA_LA_OPTIONS "--all" "--binary" - set -Ux EZA_LAD_OPTIONS "--all" "--binary" "--only-dirs" - set -Ux EZA_LAI_OPTIONS "--all" "--binary" "--icons" - set -Ux EZA_LAID_OPTIONS "--all" "--binary" "--icons" "--only-dirs" - set -Ux EZA_LAA_OPTIONS "--all" "--all" "--binary" - set -Ux EZA_LAAD_OPTIONS "--all" "--all" "--binary" "--only-dirs" - set -Ux EZA_LAAI_OPTIONS "--all" "--all" "--binary" "--icons" - set -Ux EZA_LAAID_OPTIONS "--all" "--all" "--binary" "--icons" "--only-dirs" - - for a in $__FISH_EZA_BASE_ALIASES - set -l opt_name (string join '_' "EZA" (string upper $a) "OPTIONS") - if test $a = "ll" - alias --save "$a" "eza_git" - else - alias --save "$a" "eza \$EZA_STANDARD_OPTIONS \$$opt_name" - end - set -a __FISH_EZA_OPT_NAMES "$opt_name" - set -a __FISH_EZA_ALIASES "$a" - - for i in (seq (count $__FISH_EZA_EXPANDED)) - set -l name "$a$__FISH_EZA_EXPANDED[$i]" - # --tree is useless given --all --all - if test $name = "ltaa"; or test $name = "ltaac" - continue - end - set -l exp_opt_name (string join '_' "EZA" $__FISH_EZA_EXPANDED_OPT_NAME[$i] "OPTIONS") - if string match --quiet 'll*' "$name" - alias --save "$name" "eza_git \$$exp_opt_name" - else - alias --save "$name" "eza \$EZA_STANDARD_OPTIONS \$$exp_opt_name \$$opt_name" - end - set -a __FISH_EZA_ALIASES "$name" - - if not contains $exp_opt_name $__FISH_EZA_OPT_NAMES - set -a __FISH_EZA_OPT_NAMES $exp_opt_name - end - end - end -end - -function __fish_eza_update --on-event fish-eza_update - __fish_eza_uninstall - __fish_eza_install -end - -function __fish_eza_uninstall --on-event fish-eza_uninstall - set --erase EZA_STANDARD_OPTIONS - - for a in $__FISH_EZA_ALIASES - functions --erase $a - funcsave $a - end - - for opt in $__FISH_EZA_OPT_NAMES - set --erase $opt - end - - set --erase __FISH_EZA_BASE_ALIASES - set --erase __FISH_EZA_ALIASES - set --erase __FISH_EZA_EXPANDED - set --erase __FISH_EZA_EXPANDED_OPT_NAME - set --erase __FISH_EZA_OPT_NAMES - set --erase __FISH_EZA_SORT_OPTIONS -end diff --git a/config/fish/fish_plugins b/config/fish/fish_plugins index e3e5237..3127382 100644 --- a/config/fish/fish_plugins +++ b/config/fish/fish_plugins @@ -6,5 +6,4 @@ halostatue/fish-macos@v7 jgusta/paths danhper/fish-ssh-agent halostatue/fish-brew@v3 -plttn/fish-eza edc/bass diff --git a/config/fish/functions/eza_git.fish b/config/fish/functions/eza_git.fish deleted file mode 100644 index 881039b..0000000 --- a/config/fish/functions/eza_git.fish +++ /dev/null @@ -1,7 +0,0 @@ -function eza_git -d "Use exa and its git options if in a git repo" - if git rev-parse --is-inside-work-tree &>/dev/null - eza $EZA_STANDARD_OPTIONS {$EZA_LL_OPTIONS} --git $argv - else - eza $EZA_STANDARD_OPTIONS {$EZA_LL_OPTIONS} $argv - end -end diff --git a/config/fish/functions/l.fish b/config/fish/functions/l.fish deleted file mode 100644 index dc0c767..0000000 --- a/config/fish/functions/l.fish +++ /dev/null @@ -1,4 +0,0 @@ -function l --wraps='exa $EXA_STANDARD_OPTIONS $EXA_L_OPTIONS' --wraps='eza $EZA_STANDARD_OPTIONS $EZA_L_OPTIONS' --description 'alias l eza $EZA_STANDARD_OPTIONS $EZA_L_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_L_OPTIONS $argv - -end diff --git a/config/fish/functions/la.fish b/config/fish/functions/la.fish deleted file mode 100644 index 9c63021..0000000 --- a/config/fish/functions/la.fish +++ /dev/null @@ -1,4 +0,0 @@ -function la --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LA_OPTIONS $EZA_L_OPTIONS' --description 'alias la eza $EZA_STANDARD_OPTIONS $EZA_LA_OPTIONS $EZA_L_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LA_OPTIONS $EZA_L_OPTIONS $argv - -end diff --git a/config/fish/functions/laa.fish b/config/fish/functions/laa.fish deleted file mode 100644 index 111b584..0000000 --- a/config/fish/functions/laa.fish +++ /dev/null @@ -1,4 +0,0 @@ -function laa --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAA_OPTIONS $EZA_L_OPTIONS' --description 'alias laa eza $EZA_STANDARD_OPTIONS $EZA_LAA_OPTIONS $EZA_L_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LAA_OPTIONS $EZA_L_OPTIONS $argv - -end diff --git a/config/fish/functions/laad.fish b/config/fish/functions/laad.fish deleted file mode 100644 index 4ba2306..0000000 --- a/config/fish/functions/laad.fish +++ /dev/null @@ -1,4 +0,0 @@ -function laad --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAAD_OPTIONS $EZA_L_OPTIONS' --description 'alias laad eza $EZA_STANDARD_OPTIONS $EZA_LAAD_OPTIONS $EZA_L_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LAAD_OPTIONS $EZA_L_OPTIONS $argv - -end diff --git a/config/fish/functions/laai.fish b/config/fish/functions/laai.fish deleted file mode 100644 index 8bc8463..0000000 --- a/config/fish/functions/laai.fish +++ /dev/null @@ -1,4 +0,0 @@ -function laai --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAAI_OPTIONS $EZA_L_OPTIONS' --description 'alias laai eza $EZA_STANDARD_OPTIONS $EZA_LAAI_OPTIONS $EZA_L_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LAAI_OPTIONS $EZA_L_OPTIONS $argv - -end diff --git a/config/fish/functions/laaid.fish b/config/fish/functions/laaid.fish deleted file mode 100644 index 61f9388..0000000 --- a/config/fish/functions/laaid.fish +++ /dev/null @@ -1,4 +0,0 @@ -function laaid --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAAID_OPTIONS $EZA_L_OPTIONS' --description 'alias laaid eza $EZA_STANDARD_OPTIONS $EZA_LAAID_OPTIONS $EZA_L_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LAAID_OPTIONS $EZA_L_OPTIONS $argv - -end diff --git a/config/fish/functions/lad.fish b/config/fish/functions/lad.fish deleted file mode 100644 index 7ab9591..0000000 --- a/config/fish/functions/lad.fish +++ /dev/null @@ -1,4 +0,0 @@ -function lad --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAD_OPTIONS $EZA_L_OPTIONS' --description 'alias lad eza $EZA_STANDARD_OPTIONS $EZA_LAD_OPTIONS $EZA_L_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LAD_OPTIONS $EZA_L_OPTIONS $argv - -end diff --git a/config/fish/functions/lai.fish b/config/fish/functions/lai.fish deleted file mode 100644 index 9157092..0000000 --- a/config/fish/functions/lai.fish +++ /dev/null @@ -1,4 +0,0 @@ -function lai --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAI_OPTIONS $EZA_L_OPTIONS' --description 'alias lai eza $EZA_STANDARD_OPTIONS $EZA_LAI_OPTIONS $EZA_L_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LAI_OPTIONS $EZA_L_OPTIONS $argv - -end diff --git a/config/fish/functions/laid.fish b/config/fish/functions/laid.fish deleted file mode 100644 index 147960d..0000000 --- a/config/fish/functions/laid.fish +++ /dev/null @@ -1,4 +0,0 @@ -function laid --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAID_OPTIONS $EZA_L_OPTIONS' --description 'alias laid eza $EZA_STANDARD_OPTIONS $EZA_LAID_OPTIONS $EZA_L_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LAID_OPTIONS $EZA_L_OPTIONS $argv - -end diff --git a/config/fish/functions/lc.fish b/config/fish/functions/lc.fish deleted file mode 100644 index 40bfaaf..0000000 --- a/config/fish/functions/lc.fish +++ /dev/null @@ -1,4 +0,0 @@ -function lc --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LC_OPTIONS' --description 'alias lc eza $EZA_STANDARD_OPTIONS $EZA_LC_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LC_OPTIONS $argv - -end diff --git a/config/fish/functions/lca.fish b/config/fish/functions/lca.fish deleted file mode 100644 index 790361a..0000000 --- a/config/fish/functions/lca.fish +++ /dev/null @@ -1,4 +0,0 @@ -function lca --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LA_OPTIONS $EZA_LC_OPTIONS' --description 'alias lca eza $EZA_STANDARD_OPTIONS $EZA_LA_OPTIONS $EZA_LC_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LA_OPTIONS $EZA_LC_OPTIONS $argv - -end diff --git a/config/fish/functions/lcaa.fish b/config/fish/functions/lcaa.fish deleted file mode 100644 index 01bf276..0000000 --- a/config/fish/functions/lcaa.fish +++ /dev/null @@ -1,4 +0,0 @@ -function lcaa --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAA_OPTIONS $EZA_LC_OPTIONS' --description 'alias lcaa eza $EZA_STANDARD_OPTIONS $EZA_LAA_OPTIONS $EZA_LC_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LAA_OPTIONS $EZA_LC_OPTIONS $argv - -end diff --git a/config/fish/functions/lcaad.fish b/config/fish/functions/lcaad.fish deleted file mode 100644 index fdc5c00..0000000 --- a/config/fish/functions/lcaad.fish +++ /dev/null @@ -1,4 +0,0 @@ -function lcaad --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAAD_OPTIONS $EZA_LC_OPTIONS' --description 'alias lcaad eza $EZA_STANDARD_OPTIONS $EZA_LAAD_OPTIONS $EZA_LC_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LAAD_OPTIONS $EZA_LC_OPTIONS $argv - -end diff --git a/config/fish/functions/lcaai.fish b/config/fish/functions/lcaai.fish deleted file mode 100644 index 9795ae4..0000000 --- a/config/fish/functions/lcaai.fish +++ /dev/null @@ -1,4 +0,0 @@ -function lcaai --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAAI_OPTIONS $EZA_LC_OPTIONS' --description 'alias lcaai eza $EZA_STANDARD_OPTIONS $EZA_LAAI_OPTIONS $EZA_LC_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LAAI_OPTIONS $EZA_LC_OPTIONS $argv - -end diff --git a/config/fish/functions/lcaaid.fish b/config/fish/functions/lcaaid.fish deleted file mode 100644 index 5f92bc1..0000000 --- a/config/fish/functions/lcaaid.fish +++ /dev/null @@ -1,4 +0,0 @@ -function lcaaid --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAAID_OPTIONS $EZA_LC_OPTIONS' --description 'alias lcaaid eza $EZA_STANDARD_OPTIONS $EZA_LAAID_OPTIONS $EZA_LC_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LAAID_OPTIONS $EZA_LC_OPTIONS $argv - -end diff --git a/config/fish/functions/lcad.fish b/config/fish/functions/lcad.fish deleted file mode 100644 index 0437cbc..0000000 --- a/config/fish/functions/lcad.fish +++ /dev/null @@ -1,4 +0,0 @@ -function lcad --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAD_OPTIONS $EZA_LC_OPTIONS' --description 'alias lcad eza $EZA_STANDARD_OPTIONS $EZA_LAD_OPTIONS $EZA_LC_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LAD_OPTIONS $EZA_LC_OPTIONS $argv - -end diff --git a/config/fish/functions/lcai.fish b/config/fish/functions/lcai.fish deleted file mode 100644 index b01f565..0000000 --- a/config/fish/functions/lcai.fish +++ /dev/null @@ -1,4 +0,0 @@ -function lcai --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAI_OPTIONS $EZA_LC_OPTIONS' --description 'alias lcai eza $EZA_STANDARD_OPTIONS $EZA_LAI_OPTIONS $EZA_LC_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LAI_OPTIONS $EZA_LC_OPTIONS $argv - -end diff --git a/config/fish/functions/lcaid.fish b/config/fish/functions/lcaid.fish deleted file mode 100644 index ecd3049..0000000 --- a/config/fish/functions/lcaid.fish +++ /dev/null @@ -1,4 +0,0 @@ -function lcaid --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAID_OPTIONS $EZA_LC_OPTIONS' --description 'alias lcaid eza $EZA_STANDARD_OPTIONS $EZA_LAID_OPTIONS $EZA_LC_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LAID_OPTIONS $EZA_LC_OPTIONS $argv - -end diff --git a/config/fish/functions/lcd.fish b/config/fish/functions/lcd.fish deleted file mode 100644 index b70e118..0000000 --- a/config/fish/functions/lcd.fish +++ /dev/null @@ -1,4 +0,0 @@ -function lcd --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LD_OPTIONS $EZA_LC_OPTIONS' --description 'alias lcd eza $EZA_STANDARD_OPTIONS $EZA_LD_OPTIONS $EZA_LC_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LD_OPTIONS $EZA_LC_OPTIONS $argv - -end diff --git a/config/fish/functions/lci.fish b/config/fish/functions/lci.fish deleted file mode 100644 index a256365..0000000 --- a/config/fish/functions/lci.fish +++ /dev/null @@ -1,4 +0,0 @@ -function lci --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LI_OPTIONS $EZA_LC_OPTIONS' --description 'alias lci eza $EZA_STANDARD_OPTIONS $EZA_LI_OPTIONS $EZA_LC_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LI_OPTIONS $EZA_LC_OPTIONS $argv - -end diff --git a/config/fish/functions/lcid.fish b/config/fish/functions/lcid.fish deleted file mode 100644 index d4f9037..0000000 --- a/config/fish/functions/lcid.fish +++ /dev/null @@ -1,4 +0,0 @@ -function lcid --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LID_OPTIONS $EZA_LC_OPTIONS' --description 'alias lcid eza $EZA_STANDARD_OPTIONS $EZA_LID_OPTIONS $EZA_LC_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LID_OPTIONS $EZA_LC_OPTIONS $argv - -end diff --git a/config/fish/functions/ld.fish b/config/fish/functions/ld.fish deleted file mode 100644 index 98d5cff..0000000 --- a/config/fish/functions/ld.fish +++ /dev/null @@ -1,4 +0,0 @@ -function ld --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LD_OPTIONS $EZA_L_OPTIONS' --description 'alias ld eza $EZA_STANDARD_OPTIONS $EZA_LD_OPTIONS $EZA_L_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LD_OPTIONS $EZA_L_OPTIONS $argv - -end diff --git a/config/fish/functions/le.fish b/config/fish/functions/le.fish deleted file mode 100644 index 5466d6d..0000000 --- a/config/fish/functions/le.fish +++ /dev/null @@ -1,4 +0,0 @@ -function le --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LE_OPTIONS' --description 'alias le eza $EZA_STANDARD_OPTIONS $EZA_LE_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LE_OPTIONS $argv - -end diff --git a/config/fish/functions/lea.fish b/config/fish/functions/lea.fish deleted file mode 100644 index e420c97..0000000 --- a/config/fish/functions/lea.fish +++ /dev/null @@ -1,4 +0,0 @@ -function lea --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LA_OPTIONS $EZA_LE_OPTIONS' --description 'alias lea eza $EZA_STANDARD_OPTIONS $EZA_LA_OPTIONS $EZA_LE_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LA_OPTIONS $EZA_LE_OPTIONS $argv - -end diff --git a/config/fish/functions/leaa.fish b/config/fish/functions/leaa.fish deleted file mode 100644 index 0efd6a4..0000000 --- a/config/fish/functions/leaa.fish +++ /dev/null @@ -1,4 +0,0 @@ -function leaa --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAA_OPTIONS $EZA_LE_OPTIONS' --description 'alias leaa eza $EZA_STANDARD_OPTIONS $EZA_LAA_OPTIONS $EZA_LE_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LAA_OPTIONS $EZA_LE_OPTIONS $argv - -end diff --git a/config/fish/functions/leaad.fish b/config/fish/functions/leaad.fish deleted file mode 100644 index 97c11de..0000000 --- a/config/fish/functions/leaad.fish +++ /dev/null @@ -1,4 +0,0 @@ -function leaad --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAAD_OPTIONS $EZA_LE_OPTIONS' --description 'alias leaad eza $EZA_STANDARD_OPTIONS $EZA_LAAD_OPTIONS $EZA_LE_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LAAD_OPTIONS $EZA_LE_OPTIONS $argv - -end diff --git a/config/fish/functions/leaai.fish b/config/fish/functions/leaai.fish deleted file mode 100644 index 165b450..0000000 --- a/config/fish/functions/leaai.fish +++ /dev/null @@ -1,4 +0,0 @@ -function leaai --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAAI_OPTIONS $EZA_LE_OPTIONS' --description 'alias leaai eza $EZA_STANDARD_OPTIONS $EZA_LAAI_OPTIONS $EZA_LE_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LAAI_OPTIONS $EZA_LE_OPTIONS $argv - -end diff --git a/config/fish/functions/leaaid.fish b/config/fish/functions/leaaid.fish deleted file mode 100644 index bfd8ba8..0000000 --- a/config/fish/functions/leaaid.fish +++ /dev/null @@ -1,4 +0,0 @@ -function leaaid --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAAID_OPTIONS $EZA_LE_OPTIONS' --description 'alias leaaid eza $EZA_STANDARD_OPTIONS $EZA_LAAID_OPTIONS $EZA_LE_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LAAID_OPTIONS $EZA_LE_OPTIONS $argv - -end diff --git a/config/fish/functions/lead.fish b/config/fish/functions/lead.fish deleted file mode 100644 index 634a16d..0000000 --- a/config/fish/functions/lead.fish +++ /dev/null @@ -1,4 +0,0 @@ -function lead --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAD_OPTIONS $EZA_LE_OPTIONS' --description 'alias lead eza $EZA_STANDARD_OPTIONS $EZA_LAD_OPTIONS $EZA_LE_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LAD_OPTIONS $EZA_LE_OPTIONS $argv - -end diff --git a/config/fish/functions/leai.fish b/config/fish/functions/leai.fish deleted file mode 100644 index 26333e5..0000000 --- a/config/fish/functions/leai.fish +++ /dev/null @@ -1,4 +0,0 @@ -function leai --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAI_OPTIONS $EZA_LE_OPTIONS' --description 'alias leai eza $EZA_STANDARD_OPTIONS $EZA_LAI_OPTIONS $EZA_LE_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LAI_OPTIONS $EZA_LE_OPTIONS $argv - -end diff --git a/config/fish/functions/leaid.fish b/config/fish/functions/leaid.fish deleted file mode 100644 index b98bd10..0000000 --- a/config/fish/functions/leaid.fish +++ /dev/null @@ -1,4 +0,0 @@ -function leaid --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAID_OPTIONS $EZA_LE_OPTIONS' --description 'alias leaid eza $EZA_STANDARD_OPTIONS $EZA_LAID_OPTIONS $EZA_LE_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LAID_OPTIONS $EZA_LE_OPTIONS $argv - -end diff --git a/config/fish/functions/led.fish b/config/fish/functions/led.fish deleted file mode 100644 index c95e800..0000000 --- a/config/fish/functions/led.fish +++ /dev/null @@ -1,4 +0,0 @@ -function led --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LD_OPTIONS $EZA_LE_OPTIONS' --description 'alias led eza $EZA_STANDARD_OPTIONS $EZA_LD_OPTIONS $EZA_LE_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LD_OPTIONS $EZA_LE_OPTIONS $argv - -end diff --git a/config/fish/functions/lei.fish b/config/fish/functions/lei.fish deleted file mode 100644 index 85d12fc..0000000 --- a/config/fish/functions/lei.fish +++ /dev/null @@ -1,4 +0,0 @@ -function lei --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LI_OPTIONS $EZA_LE_OPTIONS' --description 'alias lei eza $EZA_STANDARD_OPTIONS $EZA_LI_OPTIONS $EZA_LE_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LI_OPTIONS $EZA_LE_OPTIONS $argv - -end diff --git a/config/fish/functions/leid.fish b/config/fish/functions/leid.fish deleted file mode 100644 index 3e7ac68..0000000 --- a/config/fish/functions/leid.fish +++ /dev/null @@ -1,4 +0,0 @@ -function leid --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LID_OPTIONS $EZA_LE_OPTIONS' --description 'alias leid eza $EZA_STANDARD_OPTIONS $EZA_LID_OPTIONS $EZA_LE_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LID_OPTIONS $EZA_LE_OPTIONS $argv - -end diff --git a/config/fish/functions/lg.fish b/config/fish/functions/lg.fish deleted file mode 100644 index 27afc08..0000000 --- a/config/fish/functions/lg.fish +++ /dev/null @@ -1,4 +0,0 @@ -function lg --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LG_OPTIONS' --description 'alias lg eza $EZA_STANDARD_OPTIONS $EZA_LG_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LG_OPTIONS $argv - -end diff --git a/config/fish/functions/lga.fish b/config/fish/functions/lga.fish deleted file mode 100644 index 787a627..0000000 --- a/config/fish/functions/lga.fish +++ /dev/null @@ -1,4 +0,0 @@ -function lga --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LA_OPTIONS $EZA_LG_OPTIONS' --description 'alias lga eza $EZA_STANDARD_OPTIONS $EZA_LA_OPTIONS $EZA_LG_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LA_OPTIONS $EZA_LG_OPTIONS $argv - -end diff --git a/config/fish/functions/lgaa.fish b/config/fish/functions/lgaa.fish deleted file mode 100644 index f60bc8d..0000000 --- a/config/fish/functions/lgaa.fish +++ /dev/null @@ -1,4 +0,0 @@ -function lgaa --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAA_OPTIONS $EZA_LG_OPTIONS' --description 'alias lgaa eza $EZA_STANDARD_OPTIONS $EZA_LAA_OPTIONS $EZA_LG_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LAA_OPTIONS $EZA_LG_OPTIONS $argv - -end diff --git a/config/fish/functions/lgaad.fish b/config/fish/functions/lgaad.fish deleted file mode 100644 index 493954d..0000000 --- a/config/fish/functions/lgaad.fish +++ /dev/null @@ -1,4 +0,0 @@ -function lgaad --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAAD_OPTIONS $EZA_LG_OPTIONS' --description 'alias lgaad eza $EZA_STANDARD_OPTIONS $EZA_LAAD_OPTIONS $EZA_LG_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LAAD_OPTIONS $EZA_LG_OPTIONS $argv - -end diff --git a/config/fish/functions/lgaai.fish b/config/fish/functions/lgaai.fish deleted file mode 100644 index 53e5cd6..0000000 --- a/config/fish/functions/lgaai.fish +++ /dev/null @@ -1,4 +0,0 @@ -function lgaai --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAAI_OPTIONS $EZA_LG_OPTIONS' --description 'alias lgaai eza $EZA_STANDARD_OPTIONS $EZA_LAAI_OPTIONS $EZA_LG_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LAAI_OPTIONS $EZA_LG_OPTIONS $argv - -end diff --git a/config/fish/functions/lgaaid.fish b/config/fish/functions/lgaaid.fish deleted file mode 100644 index 413f7fc..0000000 --- a/config/fish/functions/lgaaid.fish +++ /dev/null @@ -1,4 +0,0 @@ -function lgaaid --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAAID_OPTIONS $EZA_LG_OPTIONS' --description 'alias lgaaid eza $EZA_STANDARD_OPTIONS $EZA_LAAID_OPTIONS $EZA_LG_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LAAID_OPTIONS $EZA_LG_OPTIONS $argv - -end diff --git a/config/fish/functions/lgad.fish b/config/fish/functions/lgad.fish deleted file mode 100644 index 7b83594..0000000 --- a/config/fish/functions/lgad.fish +++ /dev/null @@ -1,4 +0,0 @@ -function lgad --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAD_OPTIONS $EZA_LG_OPTIONS' --description 'alias lgad eza $EZA_STANDARD_OPTIONS $EZA_LAD_OPTIONS $EZA_LG_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LAD_OPTIONS $EZA_LG_OPTIONS $argv - -end diff --git a/config/fish/functions/lgai.fish b/config/fish/functions/lgai.fish deleted file mode 100644 index abbe1fd..0000000 --- a/config/fish/functions/lgai.fish +++ /dev/null @@ -1,4 +0,0 @@ -function lgai --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAI_OPTIONS $EZA_LG_OPTIONS' --description 'alias lgai eza $EZA_STANDARD_OPTIONS $EZA_LAI_OPTIONS $EZA_LG_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LAI_OPTIONS $EZA_LG_OPTIONS $argv - -end diff --git a/config/fish/functions/lgaid.fish b/config/fish/functions/lgaid.fish deleted file mode 100644 index e0dd347..0000000 --- a/config/fish/functions/lgaid.fish +++ /dev/null @@ -1,4 +0,0 @@ -function lgaid --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAID_OPTIONS $EZA_LG_OPTIONS' --description 'alias lgaid eza $EZA_STANDARD_OPTIONS $EZA_LAID_OPTIONS $EZA_LG_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LAID_OPTIONS $EZA_LG_OPTIONS $argv - -end diff --git a/config/fish/functions/lgd.fish b/config/fish/functions/lgd.fish deleted file mode 100644 index 6ec6772..0000000 --- a/config/fish/functions/lgd.fish +++ /dev/null @@ -1,4 +0,0 @@ -function lgd --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LD_OPTIONS $EZA_LG_OPTIONS' --description 'alias lgd eza $EZA_STANDARD_OPTIONS $EZA_LD_OPTIONS $EZA_LG_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LD_OPTIONS $EZA_LG_OPTIONS $argv - -end diff --git a/config/fish/functions/lgi.fish b/config/fish/functions/lgi.fish deleted file mode 100644 index f1fcde2..0000000 --- a/config/fish/functions/lgi.fish +++ /dev/null @@ -1,4 +0,0 @@ -function lgi --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LI_OPTIONS $EZA_LG_OPTIONS' --description 'alias lgi eza $EZA_STANDARD_OPTIONS $EZA_LI_OPTIONS $EZA_LG_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LI_OPTIONS $EZA_LG_OPTIONS $argv - -end diff --git a/config/fish/functions/lgid.fish b/config/fish/functions/lgid.fish deleted file mode 100644 index 9cd0818..0000000 --- a/config/fish/functions/lgid.fish +++ /dev/null @@ -1,4 +0,0 @@ -function lgid --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LID_OPTIONS $EZA_LG_OPTIONS' --description 'alias lgid eza $EZA_STANDARD_OPTIONS $EZA_LID_OPTIONS $EZA_LG_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LID_OPTIONS $EZA_LG_OPTIONS $argv - -end diff --git a/config/fish/functions/li.fish b/config/fish/functions/li.fish deleted file mode 100644 index b72a072..0000000 --- a/config/fish/functions/li.fish +++ /dev/null @@ -1,4 +0,0 @@ -function li --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LI_OPTIONS $EZA_L_OPTIONS' --description 'alias li eza $EZA_STANDARD_OPTIONS $EZA_LI_OPTIONS $EZA_L_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LI_OPTIONS $EZA_L_OPTIONS $argv - -end diff --git a/config/fish/functions/lid.fish b/config/fish/functions/lid.fish deleted file mode 100644 index 9af6102..0000000 --- a/config/fish/functions/lid.fish +++ /dev/null @@ -1,4 +0,0 @@ -function lid --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LID_OPTIONS $EZA_L_OPTIONS' --description 'alias lid eza $EZA_STANDARD_OPTIONS $EZA_LID_OPTIONS $EZA_L_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LID_OPTIONS $EZA_L_OPTIONS $argv - -end diff --git a/config/fish/functions/ll.fish b/config/fish/functions/ll.fish deleted file mode 100644 index 80df346..0000000 --- a/config/fish/functions/ll.fish +++ /dev/null @@ -1,4 +0,0 @@ -function ll --wraps=eza_git --description 'alias ll eza_git' - eza_git $argv - -end diff --git a/config/fish/functions/lla.fish b/config/fish/functions/lla.fish deleted file mode 100644 index c21107e..0000000 --- a/config/fish/functions/lla.fish +++ /dev/null @@ -1,4 +0,0 @@ -function lla --wraps='eza_git $EZA_LA_OPTIONS' --description 'alias lla eza_git $EZA_LA_OPTIONS' - eza_git $EZA_LA_OPTIONS $argv - -end diff --git a/config/fish/functions/llaa.fish b/config/fish/functions/llaa.fish deleted file mode 100644 index f31e123..0000000 --- a/config/fish/functions/llaa.fish +++ /dev/null @@ -1,4 +0,0 @@ -function llaa --wraps='eza_git $EZA_LAA_OPTIONS' --description 'alias llaa eza_git $EZA_LAA_OPTIONS' - eza_git $EZA_LAA_OPTIONS $argv - -end diff --git a/config/fish/functions/llaad.fish b/config/fish/functions/llaad.fish deleted file mode 100644 index 48bc72d..0000000 --- a/config/fish/functions/llaad.fish +++ /dev/null @@ -1,4 +0,0 @@ -function llaad --wraps='eza_git $EZA_LAAD_OPTIONS' --description 'alias llaad eza_git $EZA_LAAD_OPTIONS' - eza_git $EZA_LAAD_OPTIONS $argv - -end diff --git a/config/fish/functions/llaai.fish b/config/fish/functions/llaai.fish deleted file mode 100644 index 4fe7d9d..0000000 --- a/config/fish/functions/llaai.fish +++ /dev/null @@ -1,4 +0,0 @@ -function llaai --wraps='eza_git $EZA_LAAI_OPTIONS' --description 'alias llaai eza_git $EZA_LAAI_OPTIONS' - eza_git $EZA_LAAI_OPTIONS $argv - -end diff --git a/config/fish/functions/llaaid.fish b/config/fish/functions/llaaid.fish deleted file mode 100644 index d207f82..0000000 --- a/config/fish/functions/llaaid.fish +++ /dev/null @@ -1,4 +0,0 @@ -function llaaid --wraps='eza_git $EZA_LAAID_OPTIONS' --description 'alias llaaid eza_git $EZA_LAAID_OPTIONS' - eza_git $EZA_LAAID_OPTIONS $argv - -end diff --git a/config/fish/functions/llad.fish b/config/fish/functions/llad.fish deleted file mode 100644 index f263797..0000000 --- a/config/fish/functions/llad.fish +++ /dev/null @@ -1,4 +0,0 @@ -function llad --wraps='eza_git $EZA_LAD_OPTIONS' --description 'alias llad eza_git $EZA_LAD_OPTIONS' - eza_git $EZA_LAD_OPTIONS $argv - -end diff --git a/config/fish/functions/llai.fish b/config/fish/functions/llai.fish deleted file mode 100644 index a2fd140..0000000 --- a/config/fish/functions/llai.fish +++ /dev/null @@ -1,4 +0,0 @@ -function llai --wraps='eza_git $EZA_LAI_OPTIONS' --description 'alias llai eza_git $EZA_LAI_OPTIONS' - eza_git $EZA_LAI_OPTIONS $argv - -end diff --git a/config/fish/functions/llaid.fish b/config/fish/functions/llaid.fish deleted file mode 100644 index 81539d7..0000000 --- a/config/fish/functions/llaid.fish +++ /dev/null @@ -1,4 +0,0 @@ -function llaid --wraps='eza_git $EZA_LAID_OPTIONS' --description 'alias llaid eza_git $EZA_LAID_OPTIONS' - eza_git $EZA_LAID_OPTIONS $argv - -end diff --git a/config/fish/functions/lld.fish b/config/fish/functions/lld.fish deleted file mode 100644 index ff35776..0000000 --- a/config/fish/functions/lld.fish +++ /dev/null @@ -1,4 +0,0 @@ -function lld --wraps='eza_git $EZA_LD_OPTIONS' --description 'alias lld eza_git $EZA_LD_OPTIONS' - eza_git $EZA_LD_OPTIONS $argv - -end diff --git a/config/fish/functions/lli.fish b/config/fish/functions/lli.fish deleted file mode 100644 index 7ce50c8..0000000 --- a/config/fish/functions/lli.fish +++ /dev/null @@ -1,4 +0,0 @@ -function lli --wraps='eza_git $EZA_LI_OPTIONS' --description 'alias lli eza_git $EZA_LI_OPTIONS' - eza_git $EZA_LI_OPTIONS $argv - -end diff --git a/config/fish/functions/llid.fish b/config/fish/functions/llid.fish deleted file mode 100644 index c5ac800..0000000 --- a/config/fish/functions/llid.fish +++ /dev/null @@ -1,4 +0,0 @@ -function llid --wraps='eza_git $EZA_LID_OPTIONS' --description 'alias llid eza_git $EZA_LID_OPTIONS' - eza_git $EZA_LID_OPTIONS $argv - -end diff --git a/config/fish/functions/lo.fish b/config/fish/functions/lo.fish deleted file mode 100644 index fd14a97..0000000 --- a/config/fish/functions/lo.fish +++ /dev/null @@ -1,4 +0,0 @@ -function lo --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LO_OPTIONS' --description 'alias lo eza $EZA_STANDARD_OPTIONS $EZA_LO_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LO_OPTIONS $argv - -end diff --git a/config/fish/functions/loa.fish b/config/fish/functions/loa.fish deleted file mode 100644 index 2f04e5f..0000000 --- a/config/fish/functions/loa.fish +++ /dev/null @@ -1,4 +0,0 @@ -function loa --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LA_OPTIONS $EZA_LO_OPTIONS' --description 'alias loa eza $EZA_STANDARD_OPTIONS $EZA_LA_OPTIONS $EZA_LO_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LA_OPTIONS $EZA_LO_OPTIONS $argv - -end diff --git a/config/fish/functions/loaa.fish b/config/fish/functions/loaa.fish deleted file mode 100644 index 8aab5af..0000000 --- a/config/fish/functions/loaa.fish +++ /dev/null @@ -1,4 +0,0 @@ -function loaa --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAA_OPTIONS $EZA_LO_OPTIONS' --description 'alias loaa eza $EZA_STANDARD_OPTIONS $EZA_LAA_OPTIONS $EZA_LO_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LAA_OPTIONS $EZA_LO_OPTIONS $argv - -end diff --git a/config/fish/functions/loaad.fish b/config/fish/functions/loaad.fish deleted file mode 100644 index c447ca4..0000000 --- a/config/fish/functions/loaad.fish +++ /dev/null @@ -1,4 +0,0 @@ -function loaad --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAAD_OPTIONS $EZA_LO_OPTIONS' --description 'alias loaad eza $EZA_STANDARD_OPTIONS $EZA_LAAD_OPTIONS $EZA_LO_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LAAD_OPTIONS $EZA_LO_OPTIONS $argv - -end diff --git a/config/fish/functions/loaai.fish b/config/fish/functions/loaai.fish deleted file mode 100644 index bc97184..0000000 --- a/config/fish/functions/loaai.fish +++ /dev/null @@ -1,4 +0,0 @@ -function loaai --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAAI_OPTIONS $EZA_LO_OPTIONS' --description 'alias loaai eza $EZA_STANDARD_OPTIONS $EZA_LAAI_OPTIONS $EZA_LO_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LAAI_OPTIONS $EZA_LO_OPTIONS $argv - -end diff --git a/config/fish/functions/loaaid.fish b/config/fish/functions/loaaid.fish deleted file mode 100644 index 140ae18..0000000 --- a/config/fish/functions/loaaid.fish +++ /dev/null @@ -1,4 +0,0 @@ -function loaaid --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAAID_OPTIONS $EZA_LO_OPTIONS' --description 'alias loaaid eza $EZA_STANDARD_OPTIONS $EZA_LAAID_OPTIONS $EZA_LO_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LAAID_OPTIONS $EZA_LO_OPTIONS $argv - -end diff --git a/config/fish/functions/load.fish b/config/fish/functions/load.fish deleted file mode 100644 index a31d878..0000000 --- a/config/fish/functions/load.fish +++ /dev/null @@ -1,4 +0,0 @@ -function load --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAD_OPTIONS $EZA_LO_OPTIONS' --description 'alias load eza $EZA_STANDARD_OPTIONS $EZA_LAD_OPTIONS $EZA_LO_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LAD_OPTIONS $EZA_LO_OPTIONS $argv - -end diff --git a/config/fish/functions/loai.fish b/config/fish/functions/loai.fish deleted file mode 100644 index ee79219..0000000 --- a/config/fish/functions/loai.fish +++ /dev/null @@ -1,4 +0,0 @@ -function loai --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAI_OPTIONS $EZA_LO_OPTIONS' --description 'alias loai eza $EZA_STANDARD_OPTIONS $EZA_LAI_OPTIONS $EZA_LO_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LAI_OPTIONS $EZA_LO_OPTIONS $argv - -end diff --git a/config/fish/functions/loaid.fish b/config/fish/functions/loaid.fish deleted file mode 100644 index 2e623b6..0000000 --- a/config/fish/functions/loaid.fish +++ /dev/null @@ -1,4 +0,0 @@ -function loaid --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAID_OPTIONS $EZA_LO_OPTIONS' --description 'alias loaid eza $EZA_STANDARD_OPTIONS $EZA_LAID_OPTIONS $EZA_LO_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LAID_OPTIONS $EZA_LO_OPTIONS $argv - -end diff --git a/config/fish/functions/lod.fish b/config/fish/functions/lod.fish deleted file mode 100644 index 7edecb8..0000000 --- a/config/fish/functions/lod.fish +++ /dev/null @@ -1,4 +0,0 @@ -function lod --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LD_OPTIONS $EZA_LO_OPTIONS' --description 'alias lod eza $EZA_STANDARD_OPTIONS $EZA_LD_OPTIONS $EZA_LO_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LD_OPTIONS $EZA_LO_OPTIONS $argv - -end diff --git a/config/fish/functions/loi.fish b/config/fish/functions/loi.fish deleted file mode 100644 index bd72cf4..0000000 --- a/config/fish/functions/loi.fish +++ /dev/null @@ -1,4 +0,0 @@ -function loi --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LI_OPTIONS $EZA_LO_OPTIONS' --description 'alias loi eza $EZA_STANDARD_OPTIONS $EZA_LI_OPTIONS $EZA_LO_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LI_OPTIONS $EZA_LO_OPTIONS $argv - -end diff --git a/config/fish/functions/loid.fish b/config/fish/functions/loid.fish deleted file mode 100644 index 6c28297..0000000 --- a/config/fish/functions/loid.fish +++ /dev/null @@ -1,4 +0,0 @@ -function loid --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LID_OPTIONS $EZA_LO_OPTIONS' --description 'alias loid eza $EZA_STANDARD_OPTIONS $EZA_LID_OPTIONS $EZA_LO_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LID_OPTIONS $EZA_LO_OPTIONS $argv - -end diff --git a/config/fish/functions/lt.fish b/config/fish/functions/lt.fish deleted file mode 100644 index 4a26a9f..0000000 --- a/config/fish/functions/lt.fish +++ /dev/null @@ -1,4 +0,0 @@ -function lt --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LT_OPTIONS' --description 'alias lt eza $EZA_STANDARD_OPTIONS $EZA_LT_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LT_OPTIONS $argv - -end diff --git a/config/fish/functions/lta.fish b/config/fish/functions/lta.fish deleted file mode 100644 index 6fbcc3b..0000000 --- a/config/fish/functions/lta.fish +++ /dev/null @@ -1,4 +0,0 @@ -function lta --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LA_OPTIONS $EZA_LT_OPTIONS' --description 'alias lta eza $EZA_STANDARD_OPTIONS $EZA_LA_OPTIONS $EZA_LT_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LA_OPTIONS $EZA_LT_OPTIONS $argv - -end diff --git a/config/fish/functions/ltaad.fish b/config/fish/functions/ltaad.fish deleted file mode 100644 index 2630c40..0000000 --- a/config/fish/functions/ltaad.fish +++ /dev/null @@ -1,4 +0,0 @@ -function ltaad --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAAD_OPTIONS $EZA_LT_OPTIONS' --description 'alias ltaad eza $EZA_STANDARD_OPTIONS $EZA_LAAD_OPTIONS $EZA_LT_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LAAD_OPTIONS $EZA_LT_OPTIONS $argv - -end diff --git a/config/fish/functions/ltaai.fish b/config/fish/functions/ltaai.fish deleted file mode 100644 index 40318e1..0000000 --- a/config/fish/functions/ltaai.fish +++ /dev/null @@ -1,4 +0,0 @@ -function ltaai --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAAI_OPTIONS $EZA_LT_OPTIONS' --description 'alias ltaai eza $EZA_STANDARD_OPTIONS $EZA_LAAI_OPTIONS $EZA_LT_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LAAI_OPTIONS $EZA_LT_OPTIONS $argv - -end diff --git a/config/fish/functions/ltaaid.fish b/config/fish/functions/ltaaid.fish deleted file mode 100644 index 10ae260..0000000 --- a/config/fish/functions/ltaaid.fish +++ /dev/null @@ -1,4 +0,0 @@ -function ltaaid --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAAID_OPTIONS $EZA_LT_OPTIONS' --description 'alias ltaaid eza $EZA_STANDARD_OPTIONS $EZA_LAAID_OPTIONS $EZA_LT_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LAAID_OPTIONS $EZA_LT_OPTIONS $argv - -end diff --git a/config/fish/functions/ltad.fish b/config/fish/functions/ltad.fish deleted file mode 100644 index a645014..0000000 --- a/config/fish/functions/ltad.fish +++ /dev/null @@ -1,4 +0,0 @@ -function ltad --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAD_OPTIONS $EZA_LT_OPTIONS' --description 'alias ltad eza $EZA_STANDARD_OPTIONS $EZA_LAD_OPTIONS $EZA_LT_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LAD_OPTIONS $EZA_LT_OPTIONS $argv - -end diff --git a/config/fish/functions/ltai.fish b/config/fish/functions/ltai.fish deleted file mode 100644 index 1b546b6..0000000 --- a/config/fish/functions/ltai.fish +++ /dev/null @@ -1,4 +0,0 @@ -function ltai --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAI_OPTIONS $EZA_LT_OPTIONS' --description 'alias ltai eza $EZA_STANDARD_OPTIONS $EZA_LAI_OPTIONS $EZA_LT_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LAI_OPTIONS $EZA_LT_OPTIONS $argv - -end diff --git a/config/fish/functions/ltaid.fish b/config/fish/functions/ltaid.fish deleted file mode 100644 index b6c6bc2..0000000 --- a/config/fish/functions/ltaid.fish +++ /dev/null @@ -1,4 +0,0 @@ -function ltaid --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LAID_OPTIONS $EZA_LT_OPTIONS' --description 'alias ltaid eza $EZA_STANDARD_OPTIONS $EZA_LAID_OPTIONS $EZA_LT_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LAID_OPTIONS $EZA_LT_OPTIONS $argv - -end diff --git a/config/fish/functions/ltd.fish b/config/fish/functions/ltd.fish deleted file mode 100644 index 84875b0..0000000 --- a/config/fish/functions/ltd.fish +++ /dev/null @@ -1,4 +0,0 @@ -function ltd --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LD_OPTIONS $EZA_LT_OPTIONS' --description 'alias ltd eza $EZA_STANDARD_OPTIONS $EZA_LD_OPTIONS $EZA_LT_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LD_OPTIONS $EZA_LT_OPTIONS $argv - -end diff --git a/config/fish/functions/lti.fish b/config/fish/functions/lti.fish deleted file mode 100644 index 06ecfb3..0000000 --- a/config/fish/functions/lti.fish +++ /dev/null @@ -1,4 +0,0 @@ -function lti --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LI_OPTIONS $EZA_LT_OPTIONS' --description 'alias lti eza $EZA_STANDARD_OPTIONS $EZA_LI_OPTIONS $EZA_LT_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LI_OPTIONS $EZA_LT_OPTIONS $argv - -end diff --git a/config/fish/functions/ltid.fish b/config/fish/functions/ltid.fish deleted file mode 100644 index 8b9182e..0000000 --- a/config/fish/functions/ltid.fish +++ /dev/null @@ -1,4 +0,0 @@ -function ltid --wraps='eza $EZA_STANDARD_OPTIONS $EZA_LID_OPTIONS $EZA_LT_OPTIONS' --description 'alias ltid eza $EZA_STANDARD_OPTIONS $EZA_LID_OPTIONS $EZA_LT_OPTIONS' - eza $EZA_STANDARD_OPTIONS $EZA_LID_OPTIONS $EZA_LT_OPTIONS $argv - -end