From: Andre Ramnitz Date: Sun, 16 Jun 2024 22:23:17 +0000 (+0200) Subject: fish: tweak colors and update config X-Git-Tag: v0.2~169 X-Git-Url: https://git.ramnitz.eu/?a=commitdiff_plain;h=22bb8f7ced89f09ceab57ef07e910e3a3837707c;p=dotfiles.git fish: tweak colors and update config --- diff --git a/config/fish/config.fish b/config/fish/config.fish index 88a1abde..64dc20b9 100644 --- a/config/fish/config.fish +++ b/config/fish/config.fish @@ -3,7 +3,8 @@ if status is-interactive # #cat ~/dotfiles/banner.asc source ~/.config/fish/functions/eza-aliases.fish - fastfetch + set EZA_COLORS "*.patch.skip=38;5;244" + fastfetch set -g fish_greeting end diff --git a/config/fish/functions/eza-aliases.fish b/config/fish/functions/eza-aliases.fish index 671677da..bd8f2a22 100644 --- a/config/fish/functions/eza-aliases.fish +++ b/config/fish/functions/eza-aliases.fish @@ -1,4 +1,5 @@ #!/bin/fish + function l1 --wraps='eza' --description='alias eza' switch $(tty) case /dev/tty** @@ -29,9 +30,9 @@ end function lg --wraps='eza' --description='alias eza' switch $(tty) case /dev/tty** - EZA_GRID_ROWS=13 eza -w 220 --group --long --grid --group-directories-first $argv + EZA_GRID_ROWS=13 eza -w 220 --no-user --long --grid --group-directories-first $argv case /dev/pts/** - EZA_GRID_ROWS=26 eza -w 0 --group --long --grid --group-directories-first $argv + EZA_GRID_ROWS=26 eza -w 0 --no-user --long --grid --group-directories-first $argv end end