From 8023146a9b62645c86b981e2555f1fbeb9613556 Mon Sep 17 00:00:00 2001 From: Nick Nisi Date: Sun, 21 Apr 2013 20:36:44 -0500 Subject: [PATCH] added config to renumber tmux panes automatically --- git/gitconfig.symlink | 6 +++++- tmux/tmux.conf.symlink | 3 +++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/git/gitconfig.symlink b/git/gitconfig.symlink index 4ee1ba7..dcd91d7 100644 --- a/git/gitconfig.symlink +++ b/git/gitconfig.symlink @@ -2,6 +2,8 @@ [user] name = Nick Nisi email = nick@nisi.org +[github] + user = nicknisi [alias] ci = commit -a co = checkout @@ -40,6 +42,8 @@ undo = reset --soft HEAD~1 amend = commit --amend -C HEAD + cleanup = "!git remote prune origin && git gc && git clean -df && git stash clear" + # grep commands # 'diff grep' @@ -94,4 +98,4 @@ pager = less -FXRS -x2 editor = vim [rerere] - enabled = false + enabled = true diff --git a/tmux/tmux.conf.symlink b/tmux/tmux.conf.symlink index 3356696..a414103 100644 --- a/tmux/tmux.conf.symlink +++ b/tmux/tmux.conf.symlink @@ -5,6 +5,9 @@ set -g status-utf8 on set -g history-limit 20000 +# automatically renumber tmux windows +set -g renumber-windows on + # unbind default prefix and set it to Ctrl+a unbind C-b set -g prefix C-a