diff options
author | Stefan Ritter <xeno@thehappy.de> | 2011-03-25 14:07:10 +0100 |
---|---|---|
committer | Stefan Ritter <xeno@thehappy.de> | 2011-03-25 14:07:10 +0100 |
commit | a7af5da37db7b0e98b5d68b7a0421228da2f309c (patch) | |
tree | 5808c49f59af38bb0a51a67ed91a158520052dcd /vim | |
parent | 9bd1062ac410f3ce2007e995b8ea09a8a381ae49 (diff) |
Add bracket stuff to vimrc
Diffstat (limited to 'vim')
-rw-r--r-- | vim/vimrc | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -2,7 +2,6 @@ syntax on filetype plugin indent on set t_Co=256 colorscheme vitamins - set ls=0 set number set noerrorbells @@ -21,3 +20,9 @@ set nohlsearch autocmd bufnewfile *.py so ~/etc/vim/header_python autocmd bufnewfile *.html so ~/etc/vim/header_html autocmd bufnewfile,bufread *.tpl set filetype=html + +inoremap ( ()<Esc>i +inoremap [ []<Esc>i +inoremap { {}<Esc>i +inoremap < <><Esc>i +inoremap " ""<Esc>i |