30 lines
404 B
Nix
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
|
|
};
|
|
};
|
|
}
|