diff options
author | Rehan Mahmood <csharpking@yahoo.com> | 2019-01-20 14:31:23 -0500 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2019-01-20 20:31:23 +0100 |
commit | b9670d04092a461ae1db41080263b5a82bc1f958 (patch) | |
tree | b0fdc51ae9903be7e27db85efd1bfb6ecd9f94ab /templates | |
parent | 3c16466a14516eb3c177e7eb0553adbe16f39890 (diff) | |
download | zsh-b9670d04092a461ae1db41080263b5a82bc1f958.tar.gz zsh-b9670d04092a461ae1db41080263b5a82bc1f958.tar.bz2 zsh-b9670d04092a461ae1db41080263b5a82bc1f958.zip |
template: change plugins definition to single line (#7498)
Diffstat (limited to 'templates')
-rw-r--r-- | templates/zshrc.zsh-template | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/templates/zshrc.zsh-template b/templates/zshrc.zsh-template index 7cd2a873b..abd2c8812 100644 --- a/templates/zshrc.zsh-template +++ b/templates/zshrc.zsh-template @@ -62,9 +62,7 @@ ZSH_THEME="robbyrussell" # Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/ # Example format: plugins=(rails git textmate ruby lighthouse) # Add wisely, as too many plugins slow down shell startup. -plugins=( - git -) +plugins=(git) source $ZSH/oh-my-zsh.sh |