UnityEditor-DarkMode
UnityEditor-DarkMode copied to clipboard
Just a tip when using git
Maybe this could be added to readme...
I really like dark mode, but my teammates don't (( So in order to add it to my project I added global gitignore file, without disturbing project git history
# git bash commands
$ git config --global core.excludesFile '~/.gitignore'
$ echo *UnityEditorDarkMode* > ~/.gitignore
That's a good idea... Thank you!