44 lines
1.0 KiB
VimL
44 lines
1.0 KiB
VimL
set nocompatible " be iMproved, required
|
|
filetype off " required
|
|
|
|
set rtp+=~/.vim/bundle/Vundle.vim
|
|
call vundle#begin()
|
|
"call vundle#begin('~/some/path/here')
|
|
|
|
Plugin 'VundleVim/Vundle.vim'
|
|
|
|
Plugin 'tpope/vim-fugitive'
|
|
|
|
Plugin 'Shougo/neocomplete'
|
|
|
|
Plugin 'bling/vim-airline'
|
|
|
|
Plugin 'wakatime/vim-wakatime'
|
|
|
|
call vundle#end() " required
|
|
filetype plugin indent on " required
|
|
" To ignore plugin indent changes, instead use:
|
|
"filetype plugin on
|
|
|
|
" Disable AutoComplPop.
|
|
let g:acp_enableAtStartup = 0
|
|
" Use neocomplete.
|
|
let g:neocomplete#enable_at_startup = 1
|
|
" Use smartcase.
|
|
let g:neocomplete#enable_smart_case = 1
|
|
" Set minimum syntax keyword length.
|
|
let g:neocomplete#sources#syntax#min_keyword_length = 3
|
|
let g:neocomplete#lock_buffer_name_pattern = '\*ku\*'
|
|
|
|
" Define keyword.
|
|
if !exists('g:neocomplete#keyword_patterns')
|
|
let g:neocomplete#keyword_patterns = {}
|
|
endif
|
|
|
|
let g:airline#extensions#branch#enabled = 1
|
|
let g:airline#extensions#syntastic#enabled = 1
|
|
let g:airline_powerline_fonts = 0
|
|
|
|
set mouse=a
|
|
set number
|