nixos/home/shell/zsh.nix

21 lines
565 B
Nix
Raw Normal View History

2023-05-17 17:10:18 +01:00
{config, ...}: {
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;
keychain.enableZshIntegration = true;
starship.enableZshIntegration = true;
};
}