From b2927a55f0f24cad014b435e2ca8b95f1d6a03c9 Mon Sep 17 00:00:00 2001 From: Emmet Date: Wed, 17 May 2023 21:34:48 -0500 Subject: [PATCH] Got rid of oh-my-zsh and designed my own prompt --- user/shell/sh.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/user/shell/sh.nix b/user/shell/sh.nix index a73e181..9d78bf6 100644 --- a/user/shell/sh.nix +++ b/user/shell/sh.nix @@ -17,11 +17,11 @@ in enableCompletion = true; enableSyntaxHighlighting = true; shellAliases = myAliases; - oh-my-zsh = { - enable = true; - plugins = [ "git" ]; - theme = "agnoster"; - }; + initExtra = '' + PROMPT=" ◉ %U%F{magenta}%n%f%u@%U%F{blue}%m%f%u:%F{yellow}%~%f + %F{green}→%f " + RPROMPT="%F{black}▉%f%F{red}▉%f%F{yellow}▉%f%F{green}▉%f%F{cyan}▉%f%F{blue}▉%f%F{magenta}▉%f%F{white}▉%f" + ''; }; programs.bash = {