-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(shell_utils): amend ls utils
- Loading branch information
Nikita Rudenko
committed
Oct 23, 2024
1 parent
71dd2a0
commit d6b26ef
Showing
6 changed files
with
47 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
function lg --wraps eza | ||
eza --classify --icons --all --long --header --tree --git-ignore --level 3 $argv | ||
eza --classify --icons --all --long --header --tree --git-ignore --level 2 $argv | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
function lll --wraps eza | ||
eza \ | ||
--classify \ | ||
--icons \ | ||
--all \ | ||
--header \ | ||
--long \ | ||
--binary \ | ||
--group \ | ||
--smart-group \ | ||
--links \ | ||
--inode \ | ||
--modified \ | ||
--created \ | ||
--accessed \ | ||
--time-style "relative" \ | ||
--flags \ | ||
--blocksize \ | ||
$argv | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
function lll --wraps eza | ||
eza \ | ||
--classify \ | ||
--icons \ | ||
--all \ | ||
--header \ | ||
--long \ | ||
--binary \ | ||
--group \ | ||
--smart-group \ | ||
--links \ | ||
--inode \ | ||
--modified \ | ||
--created \ | ||
--accessed \ | ||
--time-style "relative" \ | ||
--flags \ | ||
--blocksize \ | ||
--total-size \ | ||
$argv | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
function lls --wraps eza | ||
eza --classify --icons --all --long --header --tree --total-size --level 1 $argv | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
function ls --wraps eza | ||
eza --classify --icons $argv | ||
eza --classify --icons --all $argv | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
function lt --wraps eza | ||
eza --classify --icons --all --long --header --tree --level 3 $argv | ||
eza --classify --icons --all --long --header --tree --level 2 $argv | ||
end |