no more oh-my-zsh

This commit is contained in:
joygnu 2024-07-15 23:46:53 +02:00
parent 91ee30facc
commit 33c81dfd95

View file

@ -6,6 +6,8 @@
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";
@ -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";
};
}; };
} }