adding mouse support

This commit is contained in:
Steve Francia 2010-04-22 15:25:28 -04:00
parent ac46ebb98f
commit 45f2d07708

3
.vimrc
View File

@ -15,10 +15,11 @@ silent! call pathogen#runtime_append_all_bundles()
set nocompatible " must be first line
set background=dark " Assume a dark background
" }
" General {
filetype plugin indent on " Automatically detect file types.
syntax on " syntax highlighting
set mouse=a " automatically enable mouse usage
"set autochdir " always switch to the current file directory..
" not every vim is compiled with this, use the following line instead
autocmd BufEnter * if bufname("") !~ "^\[A-Za-z0-9\]*://" | lcd %:p:h | endif