Compare commits

...
Sign in to create a new pull request.

1 commit
master ... zsh

Author SHA1 Message Date
6ea9a32d11 Initialisms 2023-07-15 15:24:50 -04:00
3 changed files with 31 additions and 4 deletions

View file

@ -134,10 +134,6 @@
enable = true; enable = true;
}; };
programs.zsh = {
enable = false;
};
imports = [ imports = [
./modules/packages ./modules/packages
./modules/files.nix ./modules/files.nix

View file

@ -17,6 +17,7 @@ in {
./neovim.nix ./neovim.nix
./starship.nix ./starship.nix
./zellij.nix ./zellij.nix
./zsh.nix
]; ];
home.packages = with pkgs; home.packages = with pkgs;
[ [

View file

@ -0,0 +1,30 @@
{
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
};
};
}