1
0
Fork 0
nix-configuration/modules/users/common/home-manager/zsh.nix

25 lines
650 B
Nix
Raw Normal View History

2024-04-13 13:16:29 -04:00
# Additional ZSH settings via Home Manager
{ pkgs, ... }:
{
programs = {
# Set up Starship
# https://starship.rs/
starship = {
enable = true;
enableZshIntegration = true;
};
zsh = {
enable = true;
autosuggestion.enable = true;
syntaxHighlighting.enable = true;
history.ignoreDups = true; # Do not enter command lines into the history list if they are duplicates of the previous event.
initExtra = ''
function set_win_title(){
echo -ne "\033]0; $(basename "$PWD") \007"
}
precmd_functions+=(set_win_title)
'';
};
};
}