2023-05-17 17:10:18 +01:00
|
|
|
{config, ...}: {
|
2023-07-16 17:35:36 +01:00
|
|
|
imports = [./default.nix];
|
2023-07-05 11:08:23 +01:00
|
|
|
programs = {
|
|
|
|
zsh = {
|
|
|
|
enable = true;
|
|
|
|
enableAutosuggestions = true;
|
|
|
|
enableCompletion = true;
|
|
|
|
syntaxHighlighting.enable = true;
|
|
|
|
enableVteIntegration = true;
|
|
|
|
autocd = true;
|
|
|
|
dotDir = ".config/zsh";
|
|
|
|
historySubstringSearch.enable = true;
|
|
|
|
history.path = "${config.xdg.dataHome}/zsh/history";
|
|
|
|
};
|
|
|
|
direnv.enableZshIntegration = true;
|
2023-07-10 20:58:41 +01:00
|
|
|
fzf.enableZshIntegration = true;
|
2023-07-16 17:35:36 +01:00
|
|
|
keychain.enableZshIntegration = true;
|
|
|
|
starship.enableZshIntegration = true;
|
2023-03-29 15:38:01 +01:00
|
|
|
};
|
|
|
|
}
|