45 lines
1,016 B
Nix
45 lines
1,016 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
home.sessionVariables.STARSHIP_CACHE = "${config.xdg.cacheHome}/starship";
|
|
|
|
programs.zsh = {
|
|
enable = true;
|
|
autosuggestion.enable = true;
|
|
syntaxHighlighting.enable = true;
|
|
sessionVariables = {
|
|
LC_ALL = "en_US.UTF-8";
|
|
ZSH_AUTOSUGGEST_USE_ASYNC = "true";
|
|
SSH_AUTH_SOCK = "/run/user/1000/keyring/ssh";
|
|
};
|
|
history = {
|
|
save = 2137;
|
|
size = 2137;
|
|
expireDuplicatesFirst = true;
|
|
ignoreDups = true;
|
|
ignoreSpace = true;
|
|
};
|
|
|
|
dirHashes = {
|
|
music = "$HOME/Music";
|
|
media = "/run/media/$USER";
|
|
};
|
|
|
|
shellAliases = import ./aliases.nix {inherit pkgs lib config;};
|
|
plugins = [
|
|
{
|
|
name = "zsh-nix-shell";
|
|
file = "nix-shell.plugin.zsh";
|
|
src = pkgs.fetchFromGitHub {
|
|
owner = "chisui";
|
|
repo = "zsh-nix-shell";
|
|
rev = "v0.7.0";
|
|
sha256 = "149zh2rm59blr2q458a5irkfh82y3dwdich60s9670kl3cl5h2m1";
|
|
};
|
|
}
|
|
];
|
|
};
|
|
}
|