nixos/home/env/zsh.nix

16 lines
439 B
Nix
Raw Normal View History

2023-05-17 17:10:18 +01:00
{config, ...}: {
programs.zsh = {
enable = true;
enableAutosuggestions = true;
enableCompletion = true;
enableSyntaxHighlighting = true;
enableVteIntegration = true;
autocd = true;
dotDir = ".config/zsh";
historySubstringSearch.enable = true;
history.path = "${config.xdg.dataHome}/zsh/history";
};
programs.keychain.enableZshIntegration = true;
programs.starship.enableZshIntegration = true;
}