Skip to content

Commit

Permalink
Fixed some spaces around the Syntastic plugin line
Browse files Browse the repository at this point in the history
Changed indentation of vim-plug installer.
  • Loading branch information
cparadis6191 committed May 25, 2015
1 parent 82c32f9 commit c58607f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -184,13 +184,13 @@ set gdefault " Use the 'g' flag for ":substitute"
" -- plugins --
if empty(glob('$HOME/.vim/autoload/plug.vim'))
silent !curl -fLo $HOME/.vim/autoload/plug.vim --create-dirs
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
autocmd VimEnter * PlugInstall
endif
if empty(glob('$HOME/.vim/autoload/plug.vim'))
silent !mkdir -p $HOME/.vim/autoload
silent !wget -qO $HOME/.vim/autoload/plug.vim
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
autocmd VimEnter * PlugInstall
endif

Expand All @@ -211,7 +211,7 @@ call plug#begin()
Plug 'https://github.com/tpope/vim-repeat'
Plug 'https://github.com/tpope/vim-surround'

Plug 'https://github.com/scrooloose/syntastic', { 'for': ['c', 'cpp', 'h'] }
Plug 'https://github.com/scrooloose/syntastic', {'for': ['c', 'cpp', 'h']}
Plug 'https://github.com/airblade/vim-gitgutter'
Plug 'https://github.com/tpope/vim-fugitive'

Expand Down

0 comments on commit c58607f

Please sign in to comment.