From 3477cdfe77afd80098b97e5ca50b5416c1d4de51 Mon Sep 17 00:00:00 2001 From: andrey_varnavskiy Date: Thu, 28 Nov 2024 05:39:57 +0500 Subject: [PATCH] new alias + remove ohMyZsh (I use starship btw) --- home-manager/modules/zsh.nix | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/home-manager/modules/zsh.nix b/home-manager/modules/zsh.nix index 9f59544..cc5b8a6 100644 --- a/home-manager/modules/zsh.nix +++ b/home-manager/modules/zsh.nix @@ -12,7 +12,6 @@ sw = "nh os switch"; upd = "nh os switch --update"; upg = "nh os switch"; - hms = "nh home switch"; pkgs = "nvim ${flakeDir}/nixos/packages.nix"; @@ -25,15 +24,18 @@ ga = "git add"; gc = "git commit"; gp = "git push"; + + ".." = "cd .."; }; history.size = 10000; history.path = "${config.xdg.dataHome}/zsh/history"; - oh-my-zsh = { - enable = true; - plugins = [ "git" "sudo" ]; - theme = "agnoster"; # blinks is also really nice - }; + # Not needed since I'm using starship + # oh-my-zsh = { + # enable = true; + # plugins = [ "git" "sudo" ]; + # theme = "agnoster"; # blinks is also really nice + # }; }; }