aboutsummaryrefslogtreecommitdiff
path: root/nvim/plugins.vim
blob: 02e88463cef11ce44be8f27116dac3ef03616f1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
" nvim/plugins.vim

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'
endif

call plug#begin()
  Plug 'romainl/vim-cool'

  Plug 'tpope/vim-surround'
  Plug 'tpope/vim-repeat'

  Plug 'mattn/emmet-vim'
call plug#end()