From 6a9cef94eef01d4cd1c8b9c633dbb6f13c0ad014 Mon Sep 17 00:00:00 2001 From: Andrew Tomaka Date: Mon, 12 Aug 2013 02:18:47 -0400 Subject: [PATCH] virtualedit is best --- .aliases | 1 + .tmux.conf | 2 +- .vimrc | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.aliases b/.aliases index 11ceb19..3740041 100644 --- a/.aliases +++ b/.aliases @@ -22,6 +22,7 @@ alias gl="git log" alias gh="git hist" alias ghd="git hist-details" alias gr="git reset" +alias grc="git rm --cached" alias grh="git reset --hard" alias gri="git rebase -i" alias grm="git rm" diff --git a/.tmux.conf b/.tmux.conf index ee77a41..f5348e4 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -18,7 +18,7 @@ set-option -g base-index 1 setw -g pane-base-index 1 # 256 colors (bce matches whatever I am doing with t_Co=256 in vim) -set -g default-terminal "screen-256color-bce" +set -g default-terminal "screen-256color" # hostry should be longer set -g history-limit 10000 diff --git a/.vimrc b/.vimrc index 7d6ed8f..924d404 100644 --- a/.vimrc +++ b/.vimrc @@ -43,6 +43,7 @@ set colorcolumn=80 " Ruler at line 80 set nomodeline set relativenumber " Relative line numbers set noswapfile " Hope for the best +set virtualedit=all " Cursor can go anywhere " Tabs are 2 spaces set tabstop=2 set softtabstop=2