This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Use zsh as default shell | |
set-option -g default-shell /bin/zsh | |
# Don‘t rename windows automatically | |
set-option -g allow-rename off | |
# Remap prefix key to F1 | |
unbind C-b | |
set-option -g prefix F1 | |
bind-key F1 send-prefix |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Create .bash_profile | |
touch ~/.bash_profile; | |
# Install xcode command line utils | |
xcode-select --install | |
# Change Mac screenshot extension type to .jpg | |
defaults write com.apple.screencapture type jpg; | |
killall SystemUIServer; |