mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-26 02:12:33 +01:00
Renamed lib/ to functions/ and renamed files inside of it.
This commit is contained in:
parent
00d4f280ae
commit
3fd9cf9f86
13 changed files with 2 additions and 2 deletions
17
functions/mixed.zsh
Normal file
17
functions/mixed.zsh
Normal 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
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue