diff options
author | mutantturkey <mutantturke@gmail.com> | 2013-02-06 14:32:28 -0500 |
---|---|---|
committer | mutantturkey <mutantturke@gmail.com> | 2013-02-06 14:32:28 -0500 |
commit | ab07ceb5ad39568f8f1fbc2fb55dafc9d781b298 (patch) | |
tree | 25a5e549b50aafe0f2ed2ca997740fbf1fc2f71f /vimrc |
initial commit
Diffstat (limited to 'vimrc')
-rw-r--r-- | vimrc | 42 |
1 files changed, 42 insertions, 0 deletions
@@ -0,0 +1,42 @@ +set number +set smartcase +set ignorecase +set nowrap +set tabpagemax=15 +set tabstop=2 +set shiftwidth=2 +set expandtab +set scrolloff=2 +set showmatch +set showmode +set title +set wildmenu +set wildignore=*.o,*.swp,*~ +set matchtime=2 +set mouse=v + + +map <F12> :make <CR> +map <F3> :cn <CR> +map <S-F3> :cp <CR> + +map <tab> :tabn <CR> +map <S-tab> :tabp <CR> + +map <C-w> :w <CR> +map <C-x> :wq + +syntax enable + +noremap ; l +noremap l k +noremap k j +noremap j h + +set background=dark + +filetype plugin on +set ofu=syntaxcomplete#Complete + +map <S-y> :w !diff % - <CR> + |