no more oh-my-zsh

This commit is contained in:
joy 2024-07-15 23:46:53 +02:00
parent abd9f8fa6e
commit 84a63b575c

View file

@ -6,7 +6,9 @@
enableCompletion = true; enableCompletion = true;
autosuggestion.enable = true; autosuggestion.enable = true;
syntaxHighlighting.enable = true; syntaxHighlighting.enable = true;
historySubstringSearch.enable = true;
initExtra = "PROMPT='%F{green}%~%f '";
shellAliases = { shellAliases = {
v = "nvim"; v = "nvim";
pu = "bash ~/nix/home/zsh/push.sh"; pu = "bash ~/nix/home/zsh/push.sh";
@ -30,11 +32,6 @@
history.size = 10000; history.size = 10000;
history.path = "${config.xdg.dataHome}/zsh/history"; history.path = "${config.xdg.dataHome}/zsh/history";
oh-my-zsh = {
enable = true;
plugins = [ "history-substring-search" ];
theme = "simple";
};
}; };
} }