bin/shrc/zshrc

24 lines
516 B
Bash
Raw Normal View History

2018-08-08 18:05:26 -05:00
if [[ -f "/etc/profile" ]]; then
source /etc/profile 2>& /dev/null
fi
2018-08-21 19:02:57 -05:00
export LANG="en_US.UTF-8"
2018-08-08 18:05:26 -05:00
DEFAULT_USER=salt
HISTFILE=~/.histfile
HISTSIZE=1000
SAVEHIST=1000
2018-08-21 19:02:57 -05:00
setopt appendhistory autocd extendedglob nomatch prompt_subst
2018-08-08 18:05:26 -05:00
unsetopt beep notify
bindkey -v
bindkey '\e[A' history-beginning-search-backward
bindkey '\e[B' history-beginning-search-forward
zstyle :compinstall filename '/home/salt/.zshrc'
autoload -Uz compinit
compinit
if [[ -f "$HOME/.profile" ]]; then
source "$HOME/.profile" 2>& /dev/null
fi