mirror of https://git.jolheiser.com/dotnix.git
parent
1b0a387fcc
commit
5b4d4791f3
|
@ -6,6 +6,7 @@
|
||||||
imports = [
|
imports = [
|
||||||
./bat.nix
|
./bat.nix
|
||||||
./bottom.nix
|
./bottom.nix
|
||||||
|
./exa.nix
|
||||||
./firefox.nix
|
./firefox.nix
|
||||||
./fzf.nix
|
./fzf.nix
|
||||||
./gpg.nix
|
./gpg.nix
|
||||||
|
|
|
@ -0,0 +1,16 @@
|
||||||
|
{
|
||||||
|
programs.exa = {
|
||||||
|
enable = true;
|
||||||
|
# These don't affect nushell currently
|
||||||
|
# git = true;
|
||||||
|
# icons = true;
|
||||||
|
};
|
||||||
|
programs.nushell.shellAliases = {
|
||||||
|
exa = "exa --git --icons";
|
||||||
|
ls = "exa";
|
||||||
|
ll = "exa -l";
|
||||||
|
la = "exa -a";
|
||||||
|
lt = "exa --tree";
|
||||||
|
lla = "exa -la";
|
||||||
|
};
|
||||||
|
}
|
|
@ -8,7 +8,7 @@
|
||||||
find = "fd";
|
find = "fd";
|
||||||
df = "duf";
|
df = "duf";
|
||||||
du = "dust -b -d 1";
|
du = "dust -b -d 1";
|
||||||
ll = "ls -al";
|
# ll = "ls -al"; # Handled by exa
|
||||||
};
|
};
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
use ${pkgs.nu_scripts}/share/nu_scripts/custom-completions/bitwarden-cli/bitwarden-cli-completions.nu *
|
use ${pkgs.nu_scripts}/share/nu_scripts/custom-completions/bitwarden-cli/bitwarden-cli-completions.nu *
|
||||||
|
|
Loading…
Reference in New Issue