enable sioyek fix gtk theme add environment variables change zathura config change hyprland config Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
25 lines
491 B
Nix
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
|
|
'';
|
|
};
|
|
}
|