1
0
mirror of https://github.com/Andrey0189/nixos-config-reborn.git synced 2025-09-15 10:06:00 +03:00

new alias + remove ohMyZsh (I use starship btw)

This commit is contained in:
andrey_varnavskiy
2024-11-28 05:39:57 +05:00
parent 5484271b62
commit 3477cdfe77

View File

@@ -12,7 +12,6 @@
sw = "nh os switch"; sw = "nh os switch";
upd = "nh os switch --update"; upd = "nh os switch --update";
upg = "nh os switch"; upg = "nh os switch";
hms = "nh home switch"; hms = "nh home switch";
pkgs = "nvim ${flakeDir}/nixos/packages.nix"; pkgs = "nvim ${flakeDir}/nixos/packages.nix";
@@ -25,15 +24,18 @@
ga = "git add"; ga = "git add";
gc = "git commit"; gc = "git commit";
gp = "git push"; gp = "git push";
".." = "cd ..";
}; };
history.size = 10000; history.size = 10000;
history.path = "${config.xdg.dataHome}/zsh/history"; history.path = "${config.xdg.dataHome}/zsh/history";
oh-my-zsh = { # Not needed since I'm using starship
enable = true; # oh-my-zsh = {
plugins = [ "git" "sudo" ]; # enable = true;
theme = "agnoster"; # blinks is also really nice # plugins = [ "git" "sudo" ];
}; # theme = "agnoster"; # blinks is also really nice
# };
}; };
} }