Made vim more standard

This commit is contained in:
Trey Blancher 2020-04-07 17:33:56 -04:00
parent ecd73e933f
commit 0ea9191371
1 changed files with 26 additions and 26 deletions

52
.vimrc
View File

@ -17,12 +17,12 @@ let g:csv_delim=','
" Pathogen
filetype off " Pathogen needs to run before plugin indent on
execute pathogen#infect()
"execute pathogen#infect()
"call pathogen#runtime_append_all_bundles()
"call pathogen#helptags() " generate help tags for everything in 'runtimepath'
filetype plugin indent on
filetype plugin on
colorscheme gruvbox
"colorscheme gruvbox
syntax on
set tabstop=4
set softtabstop=4
@ -37,32 +37,32 @@ nnoremap <C-j> <C-w>w
nmap Y y$
nmap C c$
"nnoremap V <C-v>
inoremap jj <Esc>
inoremap kk <Esc>
inoremap hh <Esc>
inoremap lll <Esc>
inoremap bbb <Esc>
inoremap eeee <Esc>
inoremap ww <Esc>
inoremap yy <Esc>yy
inoremap ddd <Esc>dd
inoremap dG <Esc>dG
inoremap :w <Esc>:w
inoremap :wq <Esc>:wq
inoremap :q <Esc>:q
inoremap :q! <Esc>:q!
nnoremap <S-Tab> <<
inoremap <S-Tab> <C-d>
"inoremap jj <Esc>
"inoremap kk <Esc>
"inoremap hh <Esc>
"inoremap lll <Esc>
"inoremap bbb <Esc>
"inoremap eeee <Esc>
"inoremap ww <Esc>
"inoremap yy <Esc>yy
"inoremap ddd <Esc>dd
"inoremap dG <Esc>dG
"inoremap :w <Esc>:w
"inoremap :wq <Esc>:wq
"inoremap :q <Esc>:q
"inoremap :q! <Esc>:q!
"nnoremap <S-Tab> <<
"inoremap <S-Tab> <C-d>
" Force me to stop using arrow keys
inoremap <Left> <Nop>
nnoremap <Left> <Nop>
inoremap <Right> <Nop>
nnoremap <Right> <Nop>
inoremap <Up> <Nop>
nnoremap <Up> <Nop>
inoremap <Down> <Nop>
nnoremap <Down> <Nop>
"inoremap <Left> <Nop>
"nnoremap <Left> <Nop>
"inoremap <Right> <Nop>
"nnoremap <Right> <Nop>
"inoremap <Up> <Nop>
"nnoremap <Up> <Nop>
"inoremap <Down> <Nop>
"nnoremap <Down> <Nop>
" Fix Home/End/Delete
set backspace=indent,eol,start