Gabe Venberg
57252af57b
This involved setting up the pass password manager to manage secrets, which in turn required setting up gpg, which needed syncthing to sync keys.
43 lines
1 KiB
Nix
43 lines
1 KiB
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
programs.starship.enableZshIntegration = true;
|
|
programs.fzf.enableZshIntegration = true;
|
|
programs.zoxide.enableZshIntegration = true;
|
|
programs.yazi.enableZshIntegration = true;
|
|
programs.carapace.enableZshIntegration = true;
|
|
programs.direnv.enableZshIntegration = true;
|
|
programs.kitty.shellIntegration.enableZshIntegration = true;
|
|
services.gpg-agent.enableZshIntegration = true;
|
|
programs.zsh = {
|
|
enable = true;
|
|
enableCompletion = true;
|
|
autocd = true;
|
|
history = {
|
|
ignoreAllDups = true;
|
|
extended = true;
|
|
};
|
|
shellAliases = {
|
|
ll = "ls -lh";
|
|
la = "-lha";
|
|
please = "sudo $(fc -ln -1)";
|
|
slideshow = "feh --full-screen --randomize --auto-zoom --recursive --slideshow-delay";
|
|
pyactivate = "source ./.venv/bin/activate";
|
|
};
|
|
syntaxHighlighting = {
|
|
enable = true;
|
|
highlighters = [
|
|
"main"
|
|
"brackets"
|
|
"pattern"
|
|
"regexp"
|
|
"cursor"
|
|
"root"
|
|
"line"
|
|
];
|
|
};
|
|
};
|
|
}
|