dotfiles-nixos/home-manager/zsh.nix

23 lines
426 B
Nix
Raw Permalink Normal View History

2023-06-20 17:10:32 +00:00
{ config, lib, pkgs, ... }:
{
programs.zsh = {
enable = true;
# autocd = true;
2023-07-14 08:21:42 +00:00
dotDir = ".config/zsh";
enableAutosuggestions = true;
enableCompletion = true;
2023-06-20 17:10:32 +00:00
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;
};
}