nixos-config/home-manager/zsh.nix

20 lines
371 B
Nix
Raw Normal View History

{ config, lib, pkgs, user, ... }:
{
programs.zsh = {
enable = true;
enableAutosuggestions = true;
enableCompletion = true;
history.size = 10000;
sessionVariables = {
ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE = "fg=10";
};
2022-07-07 15:22:12 +00:00
shellAliases = {
ls = "exa --group-directories-first --git";
neovide = "neovide --multigrid";
2022-07-07 15:22:12 +00:00
};
};
}