Skip to content

Instantly share code, notes, and snippets.

View charlieparkes's full-sized avatar
🎻
k8s will fix this

Charlie Mathews charlieparkes

🎻
k8s will fix this
  • Backend Software Engineer @Quanata
  • Franklin, TN
View GitHub Profile
@charlieparkes
charlieparkes / .tmux.conf
Last active September 30, 2017 01:12
tmux #config #tmux
#remap prefix from Ctrl-b to Ctrl-a
unbind C-b
set-option -g prefix C-a
bind a send-prefix
# rebind split commands
bind | split-window -h
bind - split-window -v
unbind '"'
unbind %
@charlieparkes
charlieparkes / install_tmux.sh
Created September 7, 2017 14:44
Install tmux on CentOS 6.9
# Sources:
# https://gist.github.com/xkniu/0b752143a5990cdb3379
# https://gist.github.com/Root-shady/d48d5282651634f464af
# http://www.nigeldunn.com/2011/12/11/libevent-2-0-so-5-cannot-open-shared-object-file-no-such-file-or-directory/
sudo yum remove tmux libevent libevent-devel libevent-headers
sudo yum install gcc kernel-devel make ncurses-devel
mkdir /tmp/tmux-setup