Added YCM plugin, and spellcheck.
This commit is contained in:
parent
8f71b48529
commit
d51d5b5a2f
1 changed files with 8 additions and 2 deletions
10
vim/vimrc
10
vim/vimrc
|
@ -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
|
||||||
|
@ -50,7 +53,9 @@ augroup vimrc_autocmds
|
||||||
augroup END
|
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
|
||||||
|
|
Loading…
Reference in a new issue