1
0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2026-02-12 05:49:47 +08:00

Compare commits

..

No commits in common. "dfe2f04de7e839ae0a9757c37a26b9d8710aa372" and "b81915d3293cc4657cec64202b9fd991b96b4ba2" have entirely different histories.

2 changed files with 4 additions and 5 deletions

View File

@ -187,12 +187,12 @@ _omz_source() {
fi
}
# Load all of the lib files in ~/oh-my-zsh/lib that end in .zsh
# Load all of the config files in ~/oh-my-zsh that end in .zsh
# TIP: Add files you don't want in git to .gitignore
for lib_file ("$ZSH"/lib/*.zsh); do
_omz_source "lib/${lib_file:t}"
for config_file ("$ZSH"/lib/*.zsh); do
_omz_source "lib/${config_file:t}"
done
unset lib_file
unset custom_config_file
# Load all of the plugins that were defined in ~/.zshrc
for plugin ($plugins); do

View File

@ -36,7 +36,6 @@ function colored() {
# Prefer `less` whenever available, since we specifically configured
# environment for it.
environment+=( PAGER="${commands[less]:-$PAGER}" )
environment+=( GROFF_NO_SGR=1 )
# See ./nroff script.
if [[ "$OSTYPE" = solaris* ]]; then