Initialisms

This commit is contained in:
Anthony Cicchetti 2023-07-15 15:24:50 -04:00
parent c02a6534fe
commit 6ea9a32d11
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
};
};
}