Skip to content

Instantly share code, notes, and snippets.

@lamida
lamida / gist:d92c9399a4300ee2e105
Last active August 29, 2015 14:21
.tmux.conf
set -g prefix C-a
bind C-a send-prefix
setw -g mode-keys vi
set -g mode-mouse on
set-window-option -g xterm-keys on
set-option -g renumber-windows on
#######################################################
# TPM BEGIN
#######################################################
@lamida
lamida / .tmux.conf
Created April 21, 2018 08:09
Jon's tmux.conf
set -g prefix C-a
bind C-a send-prefix
setw -g mode-keys vi
set -g mouse on
set-window-option -g xterm-keys on
set-option -g renumber-windows on
#######################################################
# TPM BEGIN
#######################################################
# https://stackoverflow.com/questions/19576742/how-to-clone-all-repos-at-once-from-github
CNTX={users|orgs}; NAME={username|orgname}; PAGE=1
curl "https://api.github.com/$CNTX/$NAME/repos?page=$PAGE&per_page=100" |
grep -e 'git_url*' |
cut -d \" -f 4 |
xargs -L1 git clone