blob: 44f13183baecc9d188b1a07e68485977811c6c63 (
plain) (
tree)
|
|
let data_dir = has('nvim') ? stdpath('data') . '/site' : '~/.vim'
if empty(glob(data_dir . '/autoload/plug.vim'))
silent execute '!curl -fLo '.data_dir.'/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'
autocmd VimEnter * PlugInstall --sync | source $MYVIMRC
endif
"""""""""""""""""""""""""""""""""
" Vim-Plug
call plug#begin('~/.vim/plugged')
" Syntax
Plug 'scrooloose/syntastic'
" Theme
Plug 'tomasr/molokai'
" Misc
Plug 'Yggdroot/indentLine'
Plug 'kien/rainbow_parentheses.vim'
Plug 'bronson/vim-trailing-whitespace'
call plug#end()
"""""""""""""""""""""""""""""""""
set tabstop=4
|