diff options
author | Tyler Davis <tyler@gluecode.net> | 2024-05-10 16:38:22 +0000 |
---|---|---|
committer | Tyler Davis <tyler@gluecode.net> | 2024-05-10 16:38:22 +0000 |
commit | 127d2e517d86c3a818ca054319880d6bf6522968 (patch) | |
tree | ebdce1e78be3c5f48ae79684b53c09632661bf32 /.zshrc | |
parent | 8cbcef3e8aacae02d42697b60bb5f85299e21278 (diff) | |
download | dotfiles-127d2e517d86c3a818ca054319880d6bf6522968.tar.gz dotfiles-127d2e517d86c3a818ca054319880d6bf6522968.zip |
sh: add prompt overrides
Diffstat (limited to '.zshrc')
-rw-r--r-- | .zshrc | 11 |
1 files changed, 7 insertions, 4 deletions
@@ -51,9 +51,11 @@ autoload -Uz compinit compinit # End of lines added by compinstall # Lines configured by zsh-newuser-install -HISTFILE=~/.histfile -HISTSIZE=10000 -SAVEHIST=10000 + +export HISTFILE=~/.histfile +export HISTSIZE=10000 +export SAVEHIST=10000 + setopt appendhistory unsetopt autocd beep extendedglob #bindkey -e @@ -65,4 +67,5 @@ export KEYTIMEOUT=1 ### ## == Prompt == -export PS1="%m [%n:%c]%# " +export PS1="%c$ " + |