eza: init (remove colorls)

This commit is contained in:
Christoph Hollizeck 2024-10-21 00:43:30 +02:00
parent 83db829e19
commit 2462f09e9d
4 changed files with 12 additions and 6 deletions

View file

@ -38,9 +38,8 @@ in
'';
shellAliases = {
vim = "hx";
ls = "colorls --gs -A";
ll = "ls -l";
lt = "colorls --tree";
ls = "eza -lh --icons --git";
lss = "ls --total-size";
};
plugins = with pkgs.fishPlugins; [
{

View file

@ -23,7 +23,7 @@ in
tree
ripgrep
fzf
colorls
eza
wslu
wsl-open

View file

@ -24,7 +24,7 @@ in
tree
ripgrep
fzf
colorls
eza
#optional
pciutils

View file

@ -51,7 +51,14 @@ in
};
config = {
environment.systemPackages = with pkgs; [ ];
environment.systemPackages = [ ];
# remove default nix alias
environment.shellAliases = {
l = null;
ls = null;
ll = null;
};
programs.fish = enabled;
users.defaultUserShell = pkgs.fish;