Added oh-my-zsh plugins

This commit is contained in:
KoenDR06 2024-05-17 15:31:02 +02:00
parent 24ae897664
commit 0782281a7d
3 changed files with 8 additions and 4 deletions

View file

@ -60,7 +60,6 @@
thunderbird
whatsapp-for-linux
zsh
zoxide
];
programs.home-manager.enable = true;

View file

@ -35,7 +35,6 @@
tailscale
tmux
wakeonlan
zoxide
];
programs.home-manager.enable = true;

View file

@ -18,10 +18,16 @@
ohMyZsh = {
enable = true;
plugins = ["git"];
plugins = [
"git"
"zsh-interactive-cd"
"python"
"marked2"
"git auto-fetch"
];
theme = "agnoster";
};
shellInit = "if [[ $(tty) == \"/dev/tty\"* ]]; then; bash; fi; eval \"$(zoxide init zsh --cmd cd)\"";
shellInit = "if [[ $(tty) == \"/dev/tty\"* ]]; then; bash; fi";
};
}