mirror of
https://github.com/srid/nixos-config.git
synced 2025-12-26 23:14:57 +08:00
16 lines
370 B
Nix
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";
|
|
} */
|
|
];
|
|
};
|
|
}
|