aboutsummaryrefslogblamecommitdiff
blob: 44f13183baecc9d188b1a07e68485977811c6c63 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
















                                                                                                                                               







                                      
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
Powered by cgit v1.2.3 (git 2.41.0)