1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2025-07-03 04:19:25 +00:00

Increase heading readability

This commit is contained in:
Sorin Ionescu
2012-08-04 14:48:32 -04:00
parent 060d9064f8
commit 9a52ecb21b
20 changed files with 152 additions and 5 deletions

View File

@ -8,7 +8,10 @@
# Set the path to Oh My Zsh.
export OMZ="$HOME/.oh-my-zsh"
#
# Paths
#
typeset -gU cdpath fpath mailpath manpath path
typeset -gUT INFOPATH infopath
@ -49,22 +52,33 @@ for path_file in /etc/paths.d/*(.N); do
done
unset path_file
#
# Language
#
if [[ -z "$LANG" ]]; then
eval "$(locale)"
fi
#
# Editors
#
export EDITOR='nano'
export VISUAL='nano'
export PAGER='less'
# Browser (Default)
#
# Browser
#
if [[ "$OSTYPE" == darwin* ]]; then
export BROWSER='open'
fi
#
# Less
#
# Set the default Less options.
# Mouse-wheel scrolling has been disabled by -X (disable screen clearing).