29 lines
582 B
VimL
29 lines
582 B
VimL
set ignorecase
|
|
set smartcase
|
|
set iskeyword-=_
|
|
|
|
" VundleVim
|
|
set nocompatible " be iMproved, required
|
|
filetype off " required
|
|
|
|
" set the runtime path to include Vundle and initialize
|
|
set rtp+=~/.vim/bundle/Vundle.vim
|
|
call vundle#begin()
|
|
" alternatively, pass a path where Vundle should install plugins
|
|
"call vundle#begin('~/some/path/here')
|
|
|
|
" let Vundle manage Vundle, required
|
|
Plugin 'VundleVim/Vundle.vim'
|
|
|
|
" Plugins
|
|
Plugin 'tpope/vim-fugitive'
|
|
Plugin 'tpope/vim-sleuth'
|
|
|
|
call vundle#end()
|
|
|
|
filetype plugin indent on
|
|
|
|
if filereadable(".vimrc-local")
|
|
source .vimrc-local
|
|
endif
|