An easy way to setup my personal settings for terminal and xcode
- Install Xcode and command line tools
- Install Homebrew
- Install Visual Studio Code
- Install oh-my-zhs
- Install powerlevel9k theme or anyone that you want
- Open
.zhsrc
file and replace their content with.terminal-files/zhsrc
from this repo - DO NOT FORGET Replace
USER-NAME
with youruser name
atexport ZSH="/Users/USER-NAME/.oh-my-zsh"
in.zhsrc
file - Download
Hack
font from Nerd fonts or any other font that you want - Open terminal preferences and
(cmd + ,)
- Go to profiles
- Select add profile
- Import
terminal-files/dark-colorful.terminal
profile and select as your default - Select
Hack Regular Nerd Font
as default terminal font - Close and restart the terminal to see the changes
- Download
xcode-files/codesnippets
files or any other that you want - Open
~/Library/Developer/Xcode/UserData/CodeSnippets/
- Add your new snippets inside that folder
- Close and restart Xcode
- Download
xcode-files/sounds
files or any other that you want - Open Xcode
- Open Xcode Behaviors
- Add one sound for any behaviour that you want
- Download
xcode-files/themes
from this repo - open
/Applications/Xcode.app/Contents/SharedFrameworks/DVTUserInterfaceKit.framework/Versions/A/Resources/FontAndColorThemes
- Add
dark-colorful.xccolortheme
theme there - Select your new theme in Xcode
- If you don't see your new theme in xcode just open one of the default xcode themes in any text editor and replace the content with your custom theme
git config --global user.name "_user name_"
git config --global user.email "_user email_"
git config --global core.editor "nano"
git config --global alias.br branch
git config --global alias.st status -sb
git config --global alias.lgs log --graph
git config --global alias.lga log --graph --author
git config --global alias.lg log --oneline --decorate --all --graph