From 637172dbcbfd13fd9c8d7c263a35eb6d19bc793e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kier=C3=A1n=20Meinhardt?= Date: Sat, 14 Sep 2019 20:26:07 +0200 Subject: [PATCH] fix(exa): sort by file type --- configs/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/configs/default.nix b/configs/default.nix index 2a5f742..d188331 100644 --- a/configs/default.nix +++ b/configs/default.nix @@ -217,10 +217,10 @@ in rm = "rm -i"; cp = "cp -i"; mv = "mv -i"; - l = "${pkgs.exa}/bin/exa -a"; - ls = "${pkgs.exa}/bin/exa"; - ll = "${pkgs.exa}/bin/exa -l"; - la = "${pkgs.exa}/bin/exa -la"; + l = "${pkgs.exa}/bin/exa -s type -a"; + ls = "${pkgs.exa}/bin/exa -s type"; + ll = "${pkgs.exa}/bin/exa -s type -l"; + la = "${pkgs.exa}/bin/exa -s type -la"; dig = "dig +short"; wcd = "source ${wcd}"; where = "source ${where}";