dotfiles/zsh/.zsh/exports.zsh

18 lines
314 B
Bash
Raw Normal View History

# Set PATH
export PATH=~/bin:~/.local/bin:/usr/local/bin:/usr/local/sbin:$PATH
# Setup terminal environment
export TERM=xterm-256color
export CLICOLOR=1
export LSCOLORS=Gxfxcxdxbxegedabagacad
# Enable grep colors
export GREP_COLOR='3;33'
# VIM everything
export EDITOR='vim'
# Fix gnupg
export GPG_TTY=$(tty)