Skip to content

Instantly share code, notes, and snippets.

View kyleoliveiro's full-sized avatar

Kyle Oliveiro kyleoliveiro

  • Singapore
View GitHub Profile
@kyleoliveiro
kyleoliveiro / .tmux.conf
Last active November 29, 2019 04:39
My personal tmux config
# 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
@kyleoliveiro
kyleoliveiro / new-mac-setup.txt
Last active November 28, 2019 07:56
Set up a new Mac for development
# 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;