diff options
| author | Jakub Stachurski <j.stachurski@student.utwente.nl> | 2026-02-11 16:20:48 +0100 |
|---|---|---|
| committer | Jakub Stachurski <j.stachurski@student.utwente.nl> | 2026-02-11 16:20:48 +0100 |
| commit | 6c48ae3714a52827db60176a69e6b806cb05c675 (patch) | |
| tree | c1ab9ce0eeec8272a220c7beed672a9b3f8baefe /home-modules/apps | |
| parent | f373e772781c9d1cdbe2f97ef3791a7b41ac0657 (diff) | |
Upgrade ZSH app in home-modules
Diffstat (limited to 'home-modules/apps')
| -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 = [ { |
