When I start omzsh I get this :
[oh-my-zsh] plugin 'docker,' not found
my .zshrc looks like this :
plugins=(
docker,
docker-compose,
git
)
When I start omzsh I get this :
[oh-my-zsh] plugin 'docker,' not found
my .zshrc looks like this :
plugins=(
docker,
docker-compose,
git
)
It's confusing, either write :
plugins=(
docker
docker-compose
git
)
or
plugins=(docker docker-compose git)
but not
plugins=(
docker,
docker-compose,
git
)
or
plugins=(docker, docker-compose, git)
The reason is that , is a valid character for a file. You could have a plugin called docker, or even one called ,.