diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2011-10-01 16:15:10 +0200 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2011-10-01 16:15:10 +0200 |
commit | ba90ffe60f59f48d502e4af83638b9297b875cc2 (patch) | |
tree | e595badd055183dc5f4b0f19c204ed081b183ec8 | |
parent | 10a8411e46a9d32c36f84599abfc18f19bd12d9a (diff) |
Fix LESSOPEN for darwin
-rw-r--r-- | .zsh/zshenv/20_pager | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.zsh/zshenv/20_pager b/.zsh/zshenv/20_pager index 8f58d11..fba51df 100644 --- a/.zsh/zshenv/20_pager +++ b/.zsh/zshenv/20_pager @@ -11,5 +11,6 @@ export PAGER='less' # to view some binary files in less export LESSOPEN="| /usr/bin/lesspipe %s" +is_darwin && export LESSOPEN='| /opt/local/bin/lesspipe.sh %s' # vim:ft=zsh |