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 thunderbird
whatsapp-for-linux whatsapp-for-linux
zsh zsh
zoxide
]; ];
programs.home-manager.enable = true; programs.home-manager.enable = true;

View file

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

View file

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