17 lines
489 B
Nix
17 lines
489 B
Nix
{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;
|
|
programs.nix-index.enableZshIntegration = true;
|
|
}
|