From 35a42e34ee4a94725fcda7063e3e09043e063f62 Mon Sep 17 00:00:00 2001 From: David Kerkeslager Date: Tue, 7 May 2013 00:09:53 -0400 Subject: [PATCH] De-crufted the .vimrc. --- .vimrc | 19 +++---------------- 1 file changed, 3 insertions(+), 16 deletions(-) diff --git a/.vimrc b/.vimrc index eac5995..8bb879a 100644 --- a/.vimrc +++ b/.vimrc @@ -11,6 +11,9 @@ set wildignore=*.swp,*.bak,*.pyc,*.class,*.o,*.exe " Set filetype stuff to on. filetype on filetype plugin on + +" Set up autoindentation. +set smartindent filetype indent on " Example filetype-specific setting: @@ -33,10 +36,6 @@ set scrolloff=5 " Turn off error bells and visual bell set noeb vb t_vb= -" Set up autoindentation. -set smartindent -filetype indent on - " Set tabs to width 4. set softtabstop=4 set tabstop=4 @@ -56,9 +55,6 @@ augroup Spacing autocmd FileType help,make match BadSpacing / *$/ augroup END -" Highlight search terms. -set hlsearch - " Search as you type. set incsearch @@ -101,14 +97,5 @@ noremap! noremap "" noremap! -" Map open and close items in insert mode. -" Keep this commented out until I can get it working better. -"inoremap { {}O -"inoremap [ []i -"inoremap ( ()i -"inoremap } /}o -"inoremap ] /]a -"inoremap ) /)a - " Automatically reload the .vimrc when changes are made to it au! BufWritePost .vimrc source % -- 2.20.1