aboutsummaryrefslogtreecommitdiffstats
path: root/.zprofile
diff options
context:
space:
mode:
authorDavid Runge <david.runge@frqrec.com>2014-11-30 18:55:57 +0100
committerDavid Runge <david.runge@frqrec.com>2014-11-30 18:55:57 +0100
commitc75d96166e8f6dfc30923f689b45ec327b071385 (patch)
tree2c8f59f9e36adf921b53e144b084a4f800850085 /.zprofile
parent6694053f06ff93df23c32664daf26af4ca05bc2d (diff)
parent23fda4bd1bddd3786a808dc78743f9d24338de5a (diff)
downloaddotfiles-c75d96166e8f6dfc30923f689b45ec327b071385.tar.gz
dotfiles-c75d96166e8f6dfc30923f689b45ec327b071385.tar.bz2
dotfiles-c75d96166e8f6dfc30923f689b45ec327b071385.tar.xz
dotfiles-c75d96166e8f6dfc30923f689b45ec327b071385.zip
Merge branch 'master' of https://git.frqrec.com/git/dot
* 'master' of https://git.frqrec.com/git/dot: .dircolors: Added .dircolors for colorful ls output in Termite. stop_jack: Added enabling of pulseaudio after disabling of JACK. start_jack: Added disabling of pulseaudio before starting jack, as it breaks system audio when using USB-MIDI interfaces. export.zsh: Unified settings for TERM and LC_TIME for some machines. .zprofile: Removed unnessecary exports. Added eval of dircolors (needed for Termite ls output). .tmux.conf: Setting allow rename to true .Xresources: Adding new font (Monospace) as default. Setting borderLess to true.
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)