diff options
Diffstat (limited to 'vim-plug/plugins.vim')
-rw-r--r-- | vim-plug/plugins.vim | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/vim-plug/plugins.vim b/vim-plug/plugins.vim new file mode 100644 index 00000000..fcab89ea --- /dev/null +++ b/vim-plug/plugins.vim @@ -0,0 +1,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() |