hurricane: 159 current 2025-07-04 15:30:30 25.05.20250620.b2485d5 6.15.3 *

bat & eza (cat & ls alt)

hurricane: 162 current  2025-07-04 16:07:16  25.05.20250620.b2485d5     6.15.3                          *

eza
hurricane: 163 current  2025-07-04 16:24:40  25.05.20250620.b2485d5     6.15.3                          *

hurricane: 164 current  2025-07-04 16:36:17  25.05.20250620.b2485d5     6.15.3                          *

eza and bat
This commit is contained in:
2025-07-04 15:30:47 +02:00
parent d7d6dce3ee
commit 5e87ff00a6
3 changed files with 126 additions and 2 deletions

View File

@ -108,6 +108,9 @@ in {
interactiveShellInit = ''
set fish_greeting # Disable greeting
'';
shellAliases = {
"eza" = "eza --icons=always --color-scale";
};
shellAbbrs = {
# Common abbreviations
".." = "cd ..";
@ -115,8 +118,10 @@ in {
"...." = "cd ../../../";
"....." = "cd ../../../../";
"cp" = "cp -v";
"ll" = "ls -lh";
"l" = "ls -lah";
"la" = "eza -la";
"l" = "eza -l";
"cat" = "bat -pp";
"tree" = "eza -lT";
"mkdir" = "mkdir -p";
"mv" = "mv -v";
"rm" = "rm -v";
@ -149,6 +154,13 @@ in {
enableFishIntegration = true;
};
bat = {
enable = true;
settings = {
theme = "gruvbox-dark";
};
};
# Vim editor
vim = {
enable = true;