From af65e47cd39dfb8ae443db7b4b5d3aa69dc39455 Mon Sep 17 00:00:00 2001 From: Michael Mandl Date: Thu, 7 Jul 2022 17:22:12 +0200 Subject: [PATCH] feat(zsh): alias ls to exa --- home-manager/zsh.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/home-manager/zsh.nix b/home-manager/zsh.nix index 8de3926..e80ad5a 100644 --- a/home-manager/zsh.nix +++ b/home-manager/zsh.nix @@ -6,6 +6,10 @@ enableSyntaxHighlighting = true; history.size = 10000; + shellAliases = { + ls = "exa --group-directories-first --git"; + }; + oh-my-zsh = { enable = true; plugins = [