nixos-config/modules/home/cli/zsh.nix
2025-11-21 14:17:20 -05:00

16 lines
370 B
Nix

{
programs.zsh = {
enable = true;
autosuggestion.enable = true;
syntaxHighlighting.enable = true;
plugins = [
# Fuck buggy software
# https://github.com/jeffreytse/zsh-vi-mode/issues/317
/* {
name = "vi-mode";
src = pkgs.zsh-vi-mode;
file = "share/zsh-vi-mode/zsh-vi-mode.plugin.zsh";
} */
];
};
}