Files
dotfiles/home/modules/zsh.nix
Amneesh Singh c33a30be60 home/natto: misc changes
enable sioyek
fix gtk theme
add environment variables
change zathura config
change hyprland config

Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
2023-07-26 16:41:04 +05:30

25 lines
491 B
Nix

{ config, ... }:
{
programs.zsh = {
enable = true;
autocd = true;
history = rec {
expireDuplicatesFirst = true;
size = 30000;
save = size;
};
enableAutosuggestions = true;
enableCompletion = true;
enableSyntaxHighlighting = true;
prezto = {
enable = true;
prompt.theme = "pure";
autosuggestions.color = "fg=yellow,bold";
utility.safeOps = false;
};
initExtra = ''
unsetopt extendedGlob
'';
};
}