1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-05-13 15:53:23 -07:00

Compare commits

..

No commits in common. "d07adaf621852b403969e5425493aaaa0789488e" and "7582a8435624c54fb862b1e753ec83b9fac8582c" have entirely different histories.

3 changed files with 1 additions and 13 deletions

View File

@ -139,7 +139,7 @@ ll() {
# providing extra functionality {{{2
alias diff="git diff --color=auto --no-ext-diff --no-index --no-prefix"
alias diff="git diff --color=auto --no-ext-diff --no-index"
alias gc="git column --mode=dense --padding=2"
alias counts='find . | wc -l'
alias nocom='grep -Ev --line-buffered --color=never "^[[:space:]]*(//|#)"'

View File

@ -12,9 +12,6 @@ bind C-Space send-prefix
# this also makes hitting Enter exit copy-mode, which is a godsend
setw -g mode-keys vi
# need this for ctrl+arrows, etc.
set-option -g xterm-keys on
# remove delay on escape key
set -sg escape-time 0

View File

@ -178,15 +178,6 @@ set backspace=eol,start,indent " make backspace useful
" tab completion in command-line
if has('wildmenu') | set wildmenu | endif
if &term =~ '^tmux'
" https://unix.stackexchange.com/a/34723
" tmux will send xterm-style keys when xterm-keys is on
execute "set <xUp>=\e[1;*A"
execute "set <xDown>=\e[1;*B"
execute "set <xRight>=\e[1;*C"
execute "set <xLeft>=\e[1;*D"
endif
" easy indent/unindent
nn <tab> >>
nn <s-tab> <<