diff options
Diffstat (limited to 'home-modules/apps/zsh.nix')
| -rw-r--r-- | home-modules/apps/zsh.nix | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/home-modules/apps/zsh.nix b/home-modules/apps/zsh.nix index 9a7c84d..5fca2ea 100644 --- a/home-modules/apps/zsh.nix +++ b/home-modules/apps/zsh.nix @@ -2,6 +2,7 @@ config, pkgs, lib, + hostconfig, ... }: { @@ -10,13 +11,24 @@ }; config = lib.mkIf config.homeapps.zsh.enable { - programs.zsh = { enable = true; enableCompletion = true; + syntaxHighlighting.enable = true; + autosuggestion.enable =true; oh-my-zsh = { enable = true; - theme = "clean"; + theme = "dst"; + plugins = [ + "kitty" + "rust" + "screen" + "systemd" + "tmux" + "nmap" + "npm" + "ssh" + ]; }; plugins = [ { |
