blob: fcab89ea52107cc6c0017e97d90ed0e1f7956f0a (
plain)
1
2
3
4
5
6
7
8
9
10
  | 
call plug#begin('~/.config/nvim/autoload/plugged')
    " Better Syntax Support
    Plug 'sheerun/vim-polyglot'
    " File Explorer
    Plug 'scrooloose/NERDTree'
    " Auto pairs for '(' '[' '{' 
    Plug 'jiangmiao/auto-pairs'
call plug#end()
  |