mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-05-01 04:30:37 +02:00
better handling of loadable modules
prevent loading specific modules (oh-my-zsh/lib/*.zsh) via "config_exclude" variable instead of messing with .gitignore
This commit is contained in:
parent
66179bdab8
commit
1b00c97f27
2 changed files with 16 additions and 4 deletions
|
|
@ -45,6 +45,14 @@ ZSH_THEME="robbyrussell"
|
|||
# Would you like to use another custom folder than $ZSH/custom?
|
||||
# ZSH_CUSTOM=/path/to/new-custom-folder
|
||||
|
||||
# If you want exclude some modules from loading,
|
||||
# you'll need to specify file names only (without extension) to do this.
|
||||
# Example: config_exclude=(bzr)
|
||||
# This will prevent loading ${ZSH}/lib/bzr.zsh and ${ZSH_CUSTOM}/lib/bzr.zsh,
|
||||
# if any.
|
||||
# However, you may load modules by yourself in any time.
|
||||
config_exclude=()
|
||||
|
||||
# Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*)
|
||||
# Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
|
||||
# Example format: plugins=(rails git textmate ruby lighthouse)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue