dotfiles-nixos/home-manager/zsh.nix
2023-06-20 19:10:32 +02:00

23 lines
432 B
Nix

{ config, lib, pkgs, ... }:
{
programs.zsh = {
enable = true;
# autocd = true;
# dotDir = ".config/zsh";
# enableAutosuggestions = true;
# enableCompletion = true;
shellAliases = {
l = "exa -l";
ssh = "TERM=xterm-256color ssh";
};
sessionVariables.PROMPT= ''%B%F{green}[%n@%m:%~]%f%b%F{green}$%f '';
};
programs.fzf = {
enable = true;
enableZshIntegration = true;
};
}