Compare commits

...

2 Commits

Author SHA1 Message Date
henrov 5aa6961baf rebuilding minimised nix files 2026-03-02 18:37:24 +01:00
henrov 00ec53a3a9 rewritten home/dev/zsh.nix 2026-03-02 18:37:17 +01:00
3 changed files with 364 additions and 362 deletions
+302 -301
View File
File diff suppressed because it is too large Load Diff
+3 -2
View File
@@ -2200,7 +2200,7 @@ Zsh gets installed and configured
enable = true; enable = true;
enableCompletion = true; enableCompletion = true;
autocd = true; autocd = true;
# Optional but recommended: keep zsh config in one dir (relative to $HOME) # Recommended: keep zsh config in one dir (relative to $HOME)
dotDir = ".config/zsh"; dotDir = ".config/zsh";
oh-my-zsh = { oh-my-zsh = {
enable = true; enable = true;
@@ -2216,10 +2216,11 @@ Zsh gets installed and configured
"kubectl" "kubectl"
]; ];
}; };
autosuggestion.enable = true; autosuggestions.enable = true;
syntaxHighlighting.enable = true; syntaxHighlighting.enable = true;
}; };
} }
#+end_src #+end_src
** Starship ** Starship
+2 -2
View File
@@ -4,7 +4,7 @@
enable = true; enable = true;
enableCompletion = true; enableCompletion = true;
autocd = true; autocd = true;
# Optional but recommended: keep zsh config in one dir (relative to $HOME) # Recommended: keep zsh config in one dir (relative to $HOME)
dotDir = ".config/zsh"; dotDir = ".config/zsh";
oh-my-zsh = { oh-my-zsh = {
enable = true; enable = true;
@@ -20,7 +20,7 @@
"kubectl" "kubectl"
]; ];
}; };
autosuggestion.enable = true; autosuggestions.enable = true;
syntaxHighlighting.enable = true; syntaxHighlighting.enable = true;
}; };
} }