dotfiles/.zsh/exports.zsh

24 lines
543 B
Bash
Raw Normal View History

#default apps
export EDITOR="vim"
2012-04-03 01:45:05 +00:00
export PAGER="most"
# history stuff
# number of lines kept in history
export HISTSIZE=1000
# number of lines saved in the history after logout
export SAVEHIST=1000
# location of history
export HISTFILE=~/.zhistory
# grep options
export GREP_OPTIONS='--color=auto'
export GREP_COLOR='1;32'
2012-06-11 13:42:40 +00:00
# language
export LC_ALL=en_US.UTF-8
2012-06-11 13:43:56 +00:00
export LANGUAGE=en_US.UTF-8
2012-10-03 17:32:42 +00:00
# term
export TERM=screen-256color
# Make options
if [[ -r /proc/cpuinfo ]]; then
export MAKEOPTS=-j$(($(grep -c '^processor' /proc/cpuinfo) + 1))
fi