diff options
Diffstat (limited to '.zprofile')
-rw-r--r-- | .zprofile | 31 |
1 files changed, 3 insertions, 28 deletions
@@ -1,33 +1,5 @@ # # Executes commands at login pre-zshrc. -# -# Authors: -# Sorin Ionescu <sorin.ionescu@gmail.com> -# - -# -# Browser -# - -if [[ "$OSTYPE" == darwin* ]]; then - export BROWSER='open' -fi - -# -# Editors -# - -export EDITOR='nano' -export VISUAL='nano' -export PAGER='less' - -# -# Language -# - -if [[ -z "$LANG" ]]; then - export LANG='en_US.UTF-8' -fi # # Paths @@ -75,3 +47,6 @@ if [[ ! -d "$TMPPREFIX" ]]; then mkdir -p "$TMPPREFIX" fi +# dircolors +# Set colors for ls output +eval $(dircolors ~/.dircolors) |