1
0
Fork 0
nixos-config/home-manager/roles/zsh/default.nix
Malte Brandy 57123b08e1 Reformat
2022-03-08 02:42:46 +01:00

45 lines
1.2 KiB
Nix

{pkgs, ...}: {
programs.zsh = {
enable = true;
enableAutosuggestions = true;
enableCompletion = true;
history = {
save = 1000000;
size = 1000000;
};
# Workaround for the limitation that gnome unsets some variables for following sessions (like EDITOR) but __HM_SESS_VARS_SOURCED apparently not.
initExtraFirst = ''
export __HM_SESS_VARS_SOURCED=""
'';
initExtra = ''
${builtins.readFile ./zshrc}
source ${pkgs.zsh-powerlevel10k}/share/zsh-powerlevel10k/powerlevel10k.zsh-theme
source ${./p10k.zsh}
'';
oh-my-zsh = {
enable = true;
plugins = ["colored-man-pages"];
};
plugins = [
# {
# name = "auto-notify";
# src = pkgs.fetchFromGitHub {
# owner = "MichaelAquilina";
# repo = "zsh-auto-notify";
# rev = "0.8.0";
# sha256 = "02x7q0ncbj1bn031ha7k3n2q2vrbv1wbvpx9w2qxv9jagqnjm3bd";
# };
# }
{
name = "you-should-use";
src = "${pkgs.zsh-you-should-use}/share/zsh/plugins/you-should-use";
}
{
name = "zsh-nix-shell";
file = "nix-shell.plugin.zsh";
src = "${pkgs.zsh-nix-shell}/share/zsh-nix-shell";
}
];
};
}