diff options
author | David Runge <david.runge@frqrec.com> | 2014-11-30 18:27:08 +0100 |
---|---|---|
committer | David Runge <david.runge@frqrec.com> | 2014-11-30 18:27:08 +0100 |
commit | f6f87bd5584b7632a7d02b3fb496ccfa6fdd611a (patch) | |
tree | 756de0c4fa3c6d3080d59d0c027af19698daf1b5 /.zprofile | |
parent | 487e96c819ace99727ec6e4c1e1aa38e1650ba5e (diff) | |
download | dotfiles-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-- | .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) |