diff options
-rw-r--r-- | .config/.zshrc | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.config/.zshrc b/.config/.zshrc new file mode 100644 index 0000000..8df0122 --- /dev/null +++ b/.config/.zshrc @@ -0,0 +1,19 @@ +HISTFILE=~/.histfile +HISTSIZE=1000 +SAVEHIST=1000 +unsetopt autocd beep +bindkey -e + +zstyle :compinstall filename '/home/pryazha/.zshrc' +autoload -Uz compinit +compinit + +PATH="/home/pryazha/projects/dotfiles/scripts:$PATH" + +# PS1="%n %d"$'\n'"> " +PS1="%1~ > " +PS2=">> " + +if [[ -z $DISPLAY ]] && [[ $(tty) = /dev/tty1 ]]; then + exec startx &>/dev/null +fi |