2024-10-16 01:31:13 -04:00
|
|
|
{ pkgs, ... }:
|
2024-10-09 03:36:08 -04:00
|
|
|
{
|
2024-09-23 16:22:01 -04:00
|
|
|
programs.zsh = {
|
2024-08-24 22:16:51 -04:00
|
|
|
enable = true;
|
|
|
|
autosuggestion.enable = true;
|
|
|
|
syntaxHighlighting.enable = true;
|
|
|
|
oh-my-zsh = {
|
|
|
|
enable = true;
|
2024-08-26 14:56:00 -04:00
|
|
|
theme = "agnoster";
|
2024-10-27 02:57:53 -04:00
|
|
|
plugins = [ "git" ];
|
2024-08-24 22:16:51 -04:00
|
|
|
};
|
|
|
|
initExtra = ''
|
2024-11-24 16:53:49 -05:00
|
|
|
${pkgs.any-nix-shell}/bin/any-nix-shell zsh --info-right | source /dev/stdin; pfetch
|
2024-10-27 02:57:53 -04:00
|
|
|
source ${pkgs.zsh-vi-mode}/share/zsh-vi-mode/zsh-vi-mode.plugin.zsh
|
2024-11-19 13:20:34 -05:00
|
|
|
source ${pkgs.zsh-you-should-use}/share/zsh/plugins/you-should-use/you-should-use.plugin.zsh
|
2024-08-24 22:16:51 -04:00
|
|
|
setopt HIST_IGNORE_SPACE
|
|
|
|
setopt RM_STAR_WAIT
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|