]> Freerunner's - dotfiles.git/commitdiff
fish: update aliases
authorAndre Ramnitz <tux.rising@gmail.com>
Thu, 13 Mar 2025 21:34:25 +0000 (22:34 +0100)
committerAndre Ramnitz <tux.rising@gmail.com>
Thu, 13 Mar 2025 21:34:25 +0000 (22:34 +0100)
dot-config/fish/fish_variables
dot-config/fish/functions/eza-aliases.fish

index 2d928989a1a85ca2cb60099cc8af2c191563e710..eb042f1a5c4ebe96e290240561eaf890ffec0d20 100644 (file)
@@ -1,6 +1,6 @@
 # This file contains fish universal variable definitions.
 # VERSION: 3.0
-SETUVAR __fish_initialized:3400
+SETUVAR __fish_initialized:3800
 SETUVAR fish_color_autosuggestion:brblack
 SETUVAR fish_color_cancel:\x2dr
 SETUVAR fish_color_command:blue
@@ -18,7 +18,7 @@ SETUVAR fish_color_operator:brcyan
 SETUVAR fish_color_param:cyan
 SETUVAR fish_color_quote:yellow
 SETUVAR fish_color_redirection:cyan\x1e\x2d\x2dbold
-SETUVAR fish_color_search_match:bryellow\x1e\x2d\x2dbackground\x3dbrblack
+SETUVAR fish_color_search_match:white\x1e\x2d\x2dbackground\x3dbrblack
 SETUVAR fish_color_selection:white\x1e\x2d\x2dbold\x1e\x2d\x2dbackground\x3dbrblack
 SETUVAR fish_color_status:red
 SETUVAR fish_color_user:brgreen
index 7e400c6776026c28be0e65a9bd261e26bf4d82db..330597956845b0164b03ea1230d21df3f19be6de 100644 (file)
@@ -5,7 +5,7 @@ function l1 --wraps='eza' --description='alias eza'
         case /dev/tty
             EZA_GRID_ROWS=13 eza -w 220 --group --group-directories-first -1 $argv
         case /dev/pts
-            EZA_GRID_ROWS=26 eza -w 130 --group --group-directories-first -1 $argv
+            EZA_GRID_ROWS=26 eza --group --group-directories-first -1 $argv
     end
 end
 
@@ -14,7 +14,7 @@ function ls --wraps='eza' --description='alias eza'
         case /dev/tty
             EZA_GRID_ROWS=13 eza -w 220 --group-directories-first --icons $argv
         case /dev/pts
-            EZA_GRID_ROWS=26 eza -w 130 --group-directories-first --icons $argv
+            EZA_GRID_ROWS=26 eza --group-directories-first --icons $argv
     end
 end
 
@@ -23,7 +23,7 @@ function la --wraps='eza' --description='alias eza'
         case /dev/tty
             EZA_GRID_ROWS=13 eza -w 220 --group --group-directories-first --icons -l -a $argv
         case /dev/pts
-            EZA_GRID_ROWS=26 eza -w 130 --group --group-directories-first --icons -l -a $argv
+            EZA_GRID_ROWS=26 eza --group --group-directories-first --icons -l -a $argv
     end
 end
 
@@ -32,7 +32,7 @@ function lg --wraps='eza' --description='alias eza'
         case /dev/tty
             EZA_GRID_ROWS=13 eza -w 220 --no-user --long --grid --group-directories-first $argv
         case /dev/pts
-            EZA_GRID_ROWS=26 eza -w 130 --no-user --long --grid --group-directories-first $argv
+            EZA_GRID_ROWS=26 eza --no-user --long --grid --group-directories-first $argv
     end
 end
 
@@ -41,7 +41,7 @@ function ll --wraps='eza' --description='alias eza'
         case /dev/tty
             EZA_GRID_ROWS=13 eza -w 220 --group --group-directories-first --icons -l $argv
         case /dev/pts
-            EZA_GRID_ROWS=26 eza -w 130 --group --group-directories-first --icons -l $argv
+            EZA_GRID_ROWS=26 eza --group --group-directories-first --icons -l $argv
     end
 end
 
@@ -50,6 +50,6 @@ function lt --wraps='eza' --description='alias eza'
         case /dev/tty
             EZA_GRID_ROWS=13 eza -w 220 --group --long --grid --group-directories-first --sort=mod -t=mod --time-style=long-iso $argv
         case /dev/pts
-            EZA_GRID_ROWS=26 eza -w 130 --group --long --grid --group-directories-first --sort=mod -t=mod --time-style=long-iso $argv
+            EZA_GRID_ROWS=26 eza --group --long --grid --group-directories-first --sort=mod -t=mod --time-style=long-iso $argv
     end
 end