aboutsummaryrefslogtreecommitdiff
path: root/config/zsh/.zshrc
diff options
context:
space:
mode:
authorCharles Cabergs <me@cacharle.xyz>2021-02-25 22:20:09 +0100
committerCharles Cabergs <me@cacharle.xyz>2021-02-25 22:20:09 +0100
commit5804d372ba101ab7f05d09f33f21f2f621579e90 (patch)
treee46dc80d0ad1df93fa6e9c98be68871756c9e7fe /config/zsh/.zshrc
parentd59a26f882017a62b4119a7649ca3d4b43f65725 (diff)
downloaddotfiles-5804d372ba101ab7f05d09f33f21f2f621579e90.tar.gz
dotfiles-5804d372ba101ab7f05d09f33f21f2f621579e90.tar.bz2
dotfiles-5804d372ba101ab7f05d09f33f21f2f621579e90.zip
Fixing xmonad XDG dirs, Added inputrc for vi mode everywhere
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"
;;
*)