dotfiles/.vimrc

44 lines
1.0 KiB
VimL
Raw Normal View History

2018-10-13 10:46:38 +02:00
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'
2018-10-13 10:49:48 +02:00
Plugin 'tpope/vim-fugitive'
2018-10-13 10:46:38 +02:00
2018-10-13 11:01:02 +02:00
Plugin 'Shougo/neocomplete'
Plugin 'bling/vim-airline'
Plugin 'wakatime/vim-wakatime'
2018-10-13 10:46:38 +02:00
call vundle#end() " required
filetype plugin indent on " required
" To ignore plugin indent changes, instead use:
"filetype plugin on
2018-10-13 10:49:48 +02:00
2018-10-13 11:01:02 +02:00
" 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
2018-10-13 10:49:48 +02:00
2018-10-13 11:01:02 +02:00
set mouse=a
set number