4. You're missing /. Your command source ~.zshrc tries to lookup the home directory for a user called .zshrc. The source command would presumably attempt to execute that user's home directory - and fail. What you probably meant was this, which looks up your home directory with ~ and then source can execute the commands in a file .zshrc in there.
After that, run source .zshrc to reload the configuration file, and you should see the changes applied. If you want, you can customize the default prompt by defining POWERLEVEL9K_LEFT_PROMPT_ELEMENTS in your .zshrc. Here's mine, with a minimal prompt: POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(vcs dir rbenv)
3. Open the file “users//.zshrc with the finder. If you don’t see the file, try the command “command+shift+.”. It might be a good moment to make a copy of the .zshrc file first to return to the original state. 3. The file that the variables in differs as the files are read differently depending on how the shell is launched. So given the files you list.profile. Nothing to do with zsh - it is the one file that sh reads. (bash will read this as a login shell if there is no .bash_profile.zshenv. This file is read by all zsh shells when they start.
If you don't know how to open your configuration file, go ahead and open it with vim ~/.zshrc or code ~/.zshrc (or whatever editor your prefer). First, add these two lines to your .zshrc: autoload -Uz vcs_info precmd() { vcs_info } This loads the Version Control System into your prompt ( here's the documentation for it ).
With Oh-My-Zsh framework added to the mix management of Zsh is much simplified. Use brew to install zsh: brew install zsh. Once the Zsh is installed we can switch our default shell from Bash to Zsh. $ chsh -s $ (which zsh) Changing shell for jkmutai. Password for jkmutai: chsh: /usr/local/bin/zsh: non-standard shell. . 381 299 15 78 151 153 127 190 13

how to find zshrc file in mac