aboutsummaryrefslogtreecommitdiff
path: root/config/zsh/.zshrc
diff options
context:
space:
mode:
Diffstat (limited to 'config/zsh/.zshrc')
-rw-r--r--config/zsh/.zshrc3
1 files changed, 2 insertions, 1 deletions
diff --git a/config/zsh/.zshrc b/config/zsh/.zshrc
index 0c69f31..c1e33ce 100644
--- a/config/zsh/.zshrc
+++ b/config/zsh/.zshrc
@@ -10,7 +10,8 @@ case $(tty) in
# %~ path ('~' if $HOME)
# %B/%b start/stop bold
# %B/%b start/stop color
- NEWLINE=$(printf '\n')
+ # shellcheck disable=SC2039
+ NEWLINE=$'\n'
export PROMPT="${NEWLINE}%B%F{blue}%~%f${NEWLINE}%F{red}> %f%b"
;;
*)