dotfiles/.zshenv

22 lines
441 B
Text
Raw Normal View History

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