Uncommitted changes
This commit is contained in:
parent
5fd363e489
commit
fa0a4038f9
1 changed files with 6 additions and 3 deletions
9
.vimrc
9
.vimrc
|
@ -73,9 +73,6 @@ set shiftround " if at odd number spaces, make >> go to next even
|
||||||
" Show whitespace markers before cursor in insert mode
|
" Show whitespace markers before cursor in insert mode
|
||||||
set list listchars=tab:\ \ ,trail:·
|
set list listchars=tab:\ \ ,trail:·
|
||||||
|
|
||||||
" Aliases
|
|
||||||
command! Q q
|
|
||||||
|
|
||||||
" Filetype stuff
|
" Filetype stuff
|
||||||
syntax on
|
syntax on
|
||||||
|
|
||||||
|
@ -84,6 +81,9 @@ syntax on
|
||||||
map <C-s> <esc>:w<CR>
|
map <C-s> <esc>:w<CR>
|
||||||
imap <C-s> <esc>:w<CR>
|
imap <C-s> <esc>:w<CR>
|
||||||
|
|
||||||
|
" most common typo ever
|
||||||
|
command! Q q
|
||||||
|
|
||||||
" Still using arrow keys when in insert mode sometimes
|
" Still using arrow keys when in insert mode sometimes
|
||||||
map <Left> <NOP>
|
map <Left> <NOP>
|
||||||
map <Right> <NOP>
|
map <Right> <NOP>
|
||||||
|
@ -102,6 +102,9 @@ vnoremap < <gv
|
||||||
nnoremap <silent> n n:call HLNext(0.4)<cr>
|
nnoremap <silent> n n:call HLNext(0.4)<cr>
|
||||||
nnoremap <silent> N N:call HLNext(0.4)<cr>
|
nnoremap <silent> N N:call HLNext(0.4)<cr>
|
||||||
|
|
||||||
|
" i don't even know what semi-colon does so steal it
|
||||||
|
noremap ; :
|
||||||
|
|
||||||
" Leaders (shortcuts)
|
" Leaders (shortcuts)
|
||||||
let mapleader = ","
|
let mapleader = ","
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue