From 90feb2e3be80e73ad6f7955ac2cd17f70e9fb6fe Mon Sep 17 00:00:00 2001 From: Simon Bruder Date: Sun, 28 Feb 2021 20:39:49 +0100 Subject: [PATCH] zsh: Sort aliases --- users/simon/modules/zsh.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/users/simon/modules/zsh.nix b/users/simon/modules/zsh.nix index 9b4a1f0..f56595a 100644 --- a/users/simon/modules/zsh.nix +++ b/users/simon/modules/zsh.nix @@ -33,14 +33,14 @@ in ]; shellAliases = { exa = "exa --git --binary"; + ipy = "ipython3"; l = "exa -l"; la = "exa -la"; ll = "exa -l"; ls = "exa"; - ipy = "ipython3"; + userctl = "systemctl --user"; vim = "nvim"; vimdiff = "nvim -d"; - userctl = "systemctl --user"; }; envExtra = '' export _JAVA_OPTIONS="-Dawt.useSystemAAFontSettings=on"