aboutsummaryrefslogtreecommitdiff
path: root/home/profiles/eza.nix
diff options
context:
space:
mode:
Diffstat (limited to 'home/profiles/eza.nix')
-rw-r--r--home/profiles/eza.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/home/profiles/eza.nix b/home/profiles/eza.nix
new file mode 100644
index 0000000..f71b9b6
--- /dev/null
+++ b/home/profiles/eza.nix
@@ -0,0 +1,22 @@
+{ ... }:
+{
+ programs.eza = {
+ enable = true;
+ icons = "never";
+ colors = "always";
+ git = true;
+ enableFishIntegration = false;
+ extraOptions = [
+ "--group-directories-first"
+ "--no-quotes"
+ "--git-ignore"
+ "--icons=never"
+ ];
+ };
+
+ programs.fish.shellAliases = {
+ la = "eza -la";
+ ll = "eza -la -L=1";
+ lt = "eza -aT -L=2";
+ };
+}