# Adapting your Mac Terminal
- To show your full folder path and allow you to see if you are in a git repo you can add the following code to your .zshrc file
How it looks before edits


To get to this file
- cd ~
- ls -a (to see if the file is already there)
- open .zshrc (this will open the file and sometimes create it too)
Enter the following code and save file then reopen the terminal to see changes
```
autoload -Uz vcs_info
zstyle ':vcs_info:*' enable git svn
zstyle ':vcs_info:git*' formats "- (%b) "
precmd() {
vcs_info
}
setopt prompt_subst
prompt='HoneyBee@iMac 🐝: %~/ ${vcs_info_msg_0_}> '
```
Edit the last line of this code to have your own name
How it should look after - Don't forget to restart your terminal
