2023-05-17 17:10:18 +01:00
|
|
|
{config, ...}: {
|
2023-03-29 15:38:01 +01:00
|
|
|
programs.zsh = {
|
|
|
|
enable = true;
|
2023-05-28 15:12:46 +01:00
|
|
|
enableAutosuggestions = true;
|
|
|
|
enableCompletion = true;
|
|
|
|
enableSyntaxHighlighting = true;
|
|
|
|
enableVteIntegration = true;
|
|
|
|
autocd = true;
|
|
|
|
dotDir = ".config/zsh";
|
|
|
|
historySubstringSearch.enable = true;
|
|
|
|
history.path = "${config.xdg.dataHome}/zsh/history";
|
2023-03-29 15:38:01 +01:00
|
|
|
};
|
2023-04-29 12:38:42 +01:00
|
|
|
programs.keychain.enableZshIntegration = true;
|
|
|
|
programs.starship.enableZshIntegration = true;
|
2023-06-16 14:05:17 +01:00
|
|
|
programs.nix-index.enableZshIntegration = true;
|
2023-03-29 15:38:01 +01:00
|
|
|
}
|