2021-09-12 09:54:13 +02:00
|
|
|
# ZSH configuration
|
|
|
|
export ZDOTDIR="$HOME/.config/zsh"
|
|
|
|
|
|
|
|
# History
|
|
|
|
export HISTFILE="$HOME/.config/zsh/.zsh_history"
|
2021-09-12 09:47:27 +02:00
|
|
|
export HISTSIZE=5000
|
|
|
|
export SAVEHIST=100000
|
|
|
|
|
2021-09-12 09:54:13 +02:00
|
|
|
# CLI config
|
2021-09-12 11:02:44 +02:00
|
|
|
export COMPDIR="$HOME/.cache/zsh"
|
2021-09-12 09:47:27 +02:00
|
|
|
export CLICOLOR=1
|
|
|
|
export EDITOR='vim'
|
|
|
|
export PAGER='less'
|
|
|
|
|
2021-09-12 09:54:13 +02:00
|
|
|
# Packaging
|
2021-09-12 09:47:27 +02:00
|
|
|
export USER_NICKNAME="Rodolphe Bréard"
|
|
|
|
export DEBEMAIL="packages+deb@what.tf"
|
|
|
|
export DEBFULLNAME="$USER_NICKNAME"
|
|
|
|
|
|
|
|
# Path
|
|
|
|
[ -f ~/.setpath.sh ] && . ~/.setpath.sh
|