Renamed lib/ to functions/ and renamed files inside of it.

This commit is contained in:
Sorin Ionescu 2011-07-14 16:12:15 -04:00
commit 3fd9cf9f86
13 changed files with 2 additions and 2 deletions

17
functions/mixed.zsh Normal file
View file

@ -0,0 +1,17 @@
# Smart URLs
autoload -U url-quote-magic
zle -N self-insert url-quote-magic
# Jobs
setopt long_list_jobs
# Pager
if [[ -z "$PAGER" ]]; then
export PAGER=less
fi
# Localization
if [[ -z "$LC_CTYPE" ]]; then
export LC_CTYPE=en_US.UTF-8
fi