blob: afbda7ae1d46e2f8784d82447288b5ccd69e44e8 (
plain) (
tree)
|
|
so ~/.vim/plugins.vim
filetype on
syntax on
colorscheme desert
set number
filetype indent on
set nowrap
set tabstop=2
set shiftwidth=2
set expandtab
set smartindent
set autoindent
set guioptions-=T
" highlight search matches
set hlsearch
" show matching parenthesis
set showmatch
" remove whitespace on write
autocmd BufWritePre * :%s/\s\+$//e
" press esc to cancel search
noremap <silent> <Esc> :nohlsearch<Bar>:echo<CR>
" toggle nerdtree with ctrl-o
map <C-o> :NERDTreeToggle<CR>
|