Compare commits
1 commit
Author | SHA1 | Date | |
---|---|---|---|
6ea9a32d11 |
3 changed files with 31 additions and 4 deletions
|
@ -134,10 +134,6 @@
|
|||
enable = true;
|
||||
};
|
||||
|
||||
programs.zsh = {
|
||||
enable = false;
|
||||
};
|
||||
|
||||
imports = [
|
||||
./modules/packages
|
||||
./modules/files.nix
|
||||
|
|
|
@ -17,6 +17,7 @@ in {
|
|||
./neovim.nix
|
||||
./starship.nix
|
||||
./zellij.nix
|
||||
./zsh.nix
|
||||
];
|
||||
home.packages = with pkgs;
|
||||
[
|
||||
|
|
30
nix/home-manager/modules/packages/zsh.nix
Normal file
30
nix/home-manager/modules/packages/zsh.nix
Normal 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
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Reference in a new issue