aboutsummaryrefslogtreecommitdiffstats
path: root/.zprofile
diff options
context:
space:
mode:
authorDavid Runge <david.runge@frqrec.com>2014-11-30 18:27:08 +0100
committerDavid Runge <david.runge@frqrec.com>2014-11-30 18:27:08 +0100
commitf6f87bd5584b7632a7d02b3fb496ccfa6fdd611a (patch)
tree756de0c4fa3c6d3080d59d0c027af19698daf1b5 /.zprofile
parent487e96c819ace99727ec6e4c1e1aa38e1650ba5e (diff)
downloaddotfiles-f6f87bd5584b7632a7d02b3fb496ccfa6fdd611a.tar.gz
dotfiles-f6f87bd5584b7632a7d02b3fb496ccfa6fdd611a.tar.bz2
dotfiles-f6f87bd5584b7632a7d02b3fb496ccfa6fdd611a.tar.xz
dotfiles-f6f87bd5584b7632a7d02b3fb496ccfa6fdd611a.zip
.zprofile: Removed unnessecary exports. Added eval of dircolors (needed for Termite ls output).
Diffstat (limited to '.zprofile')
-rw-r--r--.zprofile31
1 files changed, 3 insertions, 28 deletions
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 <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)