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