dotfiles/.zsh/exports.zsh

16 lines
391 B
Bash

#default apps
export EDITOR="vim"
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'
# language options so I don't get annoyed
export LANG='en_US-UTF-8'