summaryrefslogtreecommitdiff
path: root/.config/nvim/vim-plug/plugins.vim
blob: bd9cd9224f705c0e1d72efede39300c30a5fde3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
" auto-install vim-plug
if empty(glob('~/.config/nvim/autoload/plug.vim'))
  silent !curl -fLo ~/.config/nvim/autoload/plug.vim --create-dirs
    \ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
  "autocmd VimEnter * PlugInstall
  "autocmd VimEnter * PlugInstall | source $MYVIMRC
endif

call plug#begin('~/.config/nvim/autoload/plugged')
    " Distraction free writing
    Plug 'junegunn/goyo.vim'
    " Theme
    Plug 'jpo/vim-railscasts-theme'
    " Airline
    Plug 'vim-airline/vim-airline'
    Plug 'vim-airline/vim-airline-themes'
    " COC
    Plug 'neoclide/coc.nvim', {'branch': 'release'}
call plug#end()