Added YCM plugin, and spellcheck.

This commit is contained in:
Alex Kelly 2015-12-27 12:22:18 -05:00
parent 8f71b48529
commit d51d5b5a2f

View file

@ -13,6 +13,7 @@ set autoindent
set rtp+=~/.vim/bundle/vundle/ set rtp+=~/.vim/bundle/vundle/
set pastetoggle=<F10> set pastetoggle=<F10>
set incsearch set incsearch
set encoding=utf8
call vundle#rc() call vundle#rc()
"We are going to try the wrapping functions. We'll see how that works "We are going to try the wrapping functions. We'll see how that works
@ -38,7 +39,9 @@ Plugin 'altercation/vim-colors-solarized'
Plugin 'flazz/vim-colorschemes' Plugin 'flazz/vim-colorschemes'
Plugin 'drmikehenry/vim-extline' Plugin 'drmikehenry/vim-extline'
Plugin 'tpope/vim-surround.git' Plugin 'tpope/vim-surround.git'
Plugin 'ryanoasis/vim-webdevicons'
Plugin 'terryma/vim-multiple-cursors'
Plugin 'Valloric/YouCompleteMe'
filetype plugin indent on filetype plugin indent on
augroup vimrc_autocmds augroup vimrc_autocmds
@ -51,6 +54,8 @@ augroup END
"Powerline setup "Powerline setup
"set guifont=PowerLineSymbols\ DejaVu\ Sans\ Mono\ for\ Powerline\ 9 "set guifont=PowerLineSymbols\ DejaVu\ Sans\ Mono\ for\ Powerline\ 9
" set guifont=DejaVu\ Sans\ Mono\ for\ Powerline\ Plus\ Nerd\ File\ Types\ 9
set guifont=Sauce\ Code\ Powerline\ Plus\ Nerd\ File\ Types\ 9
" set guifont=Anonymous\ Pro\ for\ Powerline\ Regular/9 " set guifont=Anonymous\ Pro\ for\ Powerline\ Regular/9
let g:Powerline_symbols = 'fancy' let g:Powerline_symbols = 'fancy'
let g:airline_powerline_fonts = 1 let g:airline_powerline_fonts = 1
@ -107,3 +112,4 @@ let g:riv_fold_level = 0
let g:riv_fold_auto_update = 0 let g:riv_fold_auto_update = 0
colorscheme jellybeans colorscheme jellybeans
setlocal spell spelllang=en_us