From 5917cfdc921ba1d0484d0ac5cb8d8485b57bb12b Mon Sep 17 00:00:00 2001 From: Alexander Kobjolke Date: Mon, 28 Jul 2025 21:43:40 +0200 Subject: [PATCH 1/2] home(alex): fix tramp connection --- home/alex/programs/shell/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/home/alex/programs/shell/default.nix b/home/alex/programs/shell/default.nix index 3866337..7f36b7b 100644 --- a/home/alex/programs/shell/default.nix +++ b/home/alex/programs/shell/default.nix @@ -15,6 +15,11 @@ programs.zsh = { enable = true; autosuggestion.enable = true; + + initContent = '' + [ $TERM = "dumb" ] && unsetopt zle && PS1='$ ' + ''; + oh-my-zsh = { enable = true; plugins = [ From d1cb61f45e57059e118f0f360385510b3523e38e Mon Sep 17 00:00:00 2001 From: Alexander Kobjolke Date: Mon, 28 Jul 2025 21:25:57 +0200 Subject: [PATCH 2/2] home(alex): configure zsh --- home/alex/programs/shell/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/home/alex/programs/shell/default.nix b/home/alex/programs/shell/default.nix index 7f36b7b..48b25b9 100644 --- a/home/alex/programs/shell/default.nix +++ b/home/alex/programs/shell/default.nix @@ -14,7 +14,9 @@ programs.zsh = { enable = true; + enableCompletion = true; autosuggestion.enable = true; + syntaxHighlighting.enable = true; initContent = '' [ $TERM = "dumb" ] && unsetopt zle && PS1='$ '