15 lines
304 B
Text
15 lines
304 B
Text
|
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
|