Copied my functional folder, started generalising henrovnix and writing documentation

This commit is contained in:
2026-02-23 19:55:30 +01:00
parent 99b2f7ae89
commit c8ca5bd3ec
8843 changed files with 42 additions and 42 deletions
+33
View File
@@ -0,0 +1,33 @@
{ config, pkgs, lib, flakeRoot, ... }:
let
repoZshConf = flakeRoot + "/assets/conf/dev/terminal/zsh.conf";
in
{
programs.zsh = {
enable = true;
syntaxHighlighting.enable = true;
autosuggestions.enable = true;
enableCompletion = true;
autocd = true;
dotDir = config.home.homeDirectory;
# ---- Oh My Zsh ----
oh-my-zsh = {
enable = true;
theme = "";
plugins = [
"git"
"sudo"
"extract"
"colored-man-pages"
"command-not-found"
"history"
"docker"
"kubectl"
# IMPORTANT: these should be last
"zsh-autosuggestions"
"zsh-syntax-highlighting"
];
};
'';
};
}