From 84a63b575cc1477625ef24c57858797fdaeb2b6f Mon Sep 17 00:00:00 2001 From: joy Date: Mon, 15 Jul 2024 23:46:53 +0200 Subject: [PATCH] no more oh-my-zsh --- home/zsh/default.nix | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/home/zsh/default.nix b/home/zsh/default.nix index 3a4266f..e2a1010 100644 --- a/home/zsh/default.nix +++ b/home/zsh/default.nix @@ -6,7 +6,9 @@ enableCompletion = true; autosuggestion.enable = true; syntaxHighlighting.enable = true; - + historySubstringSearch.enable = true; + initExtra = "PROMPT='%F{green}%~%f '"; + shellAliases = { v = "nvim"; pu = "bash ~/nix/home/zsh/push.sh"; @@ -30,11 +32,6 @@ history.size = 10000; history.path = "${config.xdg.dataHome}/zsh/history"; - oh-my-zsh = { - enable = true; - plugins = [ "history-substring-search" ]; - theme = "simple"; - }; }; }