From f6f87bd5584b7632a7d02b3fb496ccfa6fdd611a Mon Sep 17 00:00:00 2001 From: David Runge Date: Sun, 30 Nov 2014 18:27:08 +0100 Subject: .zprofile: Removed unnessecary exports. Added eval of dircolors (needed for Termite ls output). --- .zprofile | 31 +++---------------------------- 1 file changed, 3 insertions(+), 28 deletions(-) (limited to '.zprofile') diff --git a/.zprofile b/.zprofile index 7118770..45cdd5e 100644 --- a/.zprofile +++ b/.zprofile @@ -1,33 +1,5 @@ # # Executes commands at login pre-zshrc. -# -# Authors: -# Sorin Ionescu -# - -# -# 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) -- cgit v1.2.3-54-g00ecf