1 2 3 4 5 6 7 8 9 10 11 12 13 14
{ pkgs, config, ... }: { programs.zsh = { enable = true; defaultKeymap = "viins"; # Feeble attempt at cleaning up home directory. # TODO: dotDir = (pathRelativeTo config.xdg.configHome config.home) + "/zsh"; dotDir = ".config/zsh"; history.path = config.xdg.cacheHome + "/zsh/history"; }; }