dotfiles/nix/home-manager/modules/packages/zsh.nix
2023-07-15 15:24:50 -04:00

30 lines
404 B
Nix

{
config,
lib,
pkgs,
...
}: {
programs.zsh = {
enable = false;
plugins = [
{
# fast-syntax-highlighting
}
{
# zsh-completions
}
{
# zsh-completions-anyenv
}
{
# zsh-vimode-visual
}
];
history = {
# TODO
# HISTFILE=~/.histfile
# HISTSIZE=10000
# SAVEHIST=10000
};
};
}