23 lines
432 B
Nix
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;
|
|
};
|
|
|
|
}
|