diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2010-03-10 10:14:17 +0100 |
---|---|---|
committer | Tobias Klauser <klto@zhaw.ch> | 2010-03-10 10:14:17 +0100 |
commit | e14c3c7a7a3c91b25deb74249c5195c9e266f6c3 (patch) | |
tree | a2ab4c2be0174771bb54cf73007102718271be48 /.zsh/zshenv/20_pager | |
parent | 01409c293039b343fd083920b92d355fec0987ed (diff) |
Add editor and pager config env vars
Diffstat (limited to '.zsh/zshenv/20_pager')
-rw-r--r-- | .zsh/zshenv/20_pager | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.zsh/zshenv/20_pager b/.zsh/zshenv/20_pager new file mode 100644 index 0000000..8f58d11 --- /dev/null +++ b/.zsh/zshenv/20_pager @@ -0,0 +1,15 @@ +# zshenv/20_pager +# +# set pager variables +# +# Copyright © 2010 Tobias Klauser <tklauser@distanz.ch> +# Released under the terms of the Artistic Licence 2.0 +# +# Source repository: git://git.distanz.ch/dotfiles/zsh.git + +export PAGER='less' + +# to view some binary files in less +export LESSOPEN="| /usr/bin/lesspipe %s" + +# vim:ft=zsh |