diff --git a/.zshenv b/.zshenv new file mode 100644 index 0000000..f9a371e --- /dev/null +++ b/.zshenv @@ -0,0 +1,14 @@ +export HISTFILE="$HOME/.zsh_history" +export HISTSIZE=5000 +export SAVEHIST=100000 + +export CLICOLOR=1 +export EDITOR='vim' +export PAGER='less' + +export USER_NICKNAME="Rodolphe Bréard" +export DEBEMAIL="packages+deb@what.tf" +export DEBFULLNAME="$USER_NICKNAME" + +# Path +[ -f ~/.setpath.sh ] && . ~/.setpath.sh diff --git a/.zshrc b/.zshrc index ef3bd27..65218f1 100644 --- a/.zshrc +++ b/.zshrc @@ -2,18 +2,6 @@ setopt no_beep inc_append_history hist_ignore_dups hist_ignore_space extended_gl bindkey -e bindkey "^[[3~" delete-char bindkey "^[3;5~" delete-char -export HISTFILE="$HOME/.zsh_history" -export HISTSIZE=5000 -export SAVEHIST=100000 -export CLICOLOR=1 -export EDITOR='vim' -export PAGER='less' -export USER_NICKNAME="Rodolphe Bréard" -export DEBEMAIL="packages+deb@what.tf" -export DEBFULLNAME="$USER_NICKNAME" - -# Path -[ -f ~/.setpath.sh ] && . ~/.setpath.sh # Colors [ "$CLICOLOR" -ne 0 ] && hash dircolors 2>/dev/null && eval $(dircolors -b)