16 lines
368 B
Bash
16 lines
368 B
Bash
HISTFILE=${HOME}/.zsh_history
|
|
HISTSIZE=500000
|
|
SAVEHIST=$HISTSIZE
|
|
|
|
export GOPATH="$HOME/.go"
|
|
export PATH="$HOME/.cargo/bin:$HOME/.gem/bin:$GOPATH/bin:$HOME/.local/bin:/opt/homebrew/bin:$PATH"
|
|
|
|
if [[ -x /usr/bin/nvim ]]; then
|
|
export EDITOR=nvim
|
|
elif [[ -x /usr/bin/vim ]]; then
|
|
export EDITOR=vim
|
|
fi
|
|
|
|
export LESS=-R
|
|
[[ -x /usr/bin/dircolors ]] && eval "$(dircolors)"
|