# 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 ![](https://hackmd.io/_uploads/ByhtAthY3.png) ![](https://hackmd.io/_uploads/r15iCY3Fn.png) 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 ![](https://hackmd.io/_uploads/B160CK2Y3.png)