From 63dacc1fcb306f8343d8510de38751f6863abfca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hannes=20K=C3=B6rber?= Date: Sat, 9 Sep 2017 14:40:06 +0200 Subject: [PATCH] zsh: Set ENV variables BROWSER, LESS, DOTFILES --- zsh/zprofile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/zsh/zprofile b/zsh/zprofile index 2f55a27..4f97237 100644 --- a/zsh/zprofile +++ b/zsh/zprofile @@ -17,9 +17,10 @@ export PATH export EDITOR="vim" export VISUAL="vim" -export BROWSER="chromium" +export BROWSER="/usr/bin/xdg-open" export PAGER="less" +export LESS="FRX" export VIMRC="$HOME/.vimrc" @@ -34,6 +35,9 @@ export LANG=en_US.UTF-8 export LC_TIME=de_DE.UTF-8 export LC_COLLATE=C +export DOTFILES=~/dotfiles + + # Start the gpg-agent if not already running if ! pgrep -x --uid "${USER}" gpg-agent >/dev/null 2>&1; then eval $(gpg-agent --daemon --sh)