From 1cfc7360cfd89243ad08a688e3e8dc4d9f88120f Mon Sep 17 00:00:00 2001 From: Jason Swank Date: Thu, 28 Mar 2024 20:27:41 -0400 Subject: [PATCH] move prompt definition to .zshrc --- zsh/.zshenv | 1 - zsh/.zshrc | 2 ++ 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/zsh/.zshenv b/zsh/.zshenv index 3af7000..e21c377 100644 --- a/zsh/.zshenv +++ b/zsh/.zshenv @@ -1,7 +1,6 @@ HISTFILE=~/.histfile HISTSIZE=1000 SAVEHIST=1000 -PROMPT="%B%m:%~> %b" export LANG=en_US.UTF-8 export EDITOR=nvim diff --git a/zsh/.zshrc b/zsh/.zshrc index de515c0..dc5e926 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -8,6 +8,8 @@ alias w3='w3m -T text/html' # allow for # to be interpreted as a comment on the command line setopt interactivecomments +PROMPT="%B%m:%~> %b" + # cd tricks alias -- -='cd -' setopt auto_cd # there is no binary by that name in your $PATH, your shell will cd into it that directory