diff options
Diffstat (limited to '.config/nvim/lua/plug.lua')
| -rw-r--r-- | .config/nvim/lua/plug.lua | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.config/nvim/lua/plug.lua b/.config/nvim/lua/plug.lua new file mode 100644 index 0000000..63eac2e --- /dev/null +++ b/.config/nvim/lua/plug.lua @@ -0,0 +1,15 @@ +-- Plugin manager (vim-plug) +vim.cmd [[ + call plug#begin() + Plug 'https://github.com/preservim/nerdtree', { 'on': 'NERDTreeToggle' } + " Plug 'LunarWatcher/auto-pairs' + Plug 'tmsvg/pear-tree' + Plug 'https://github.com/adelarsq/vim-matchit' + Plug 'neoclide/coc.nvim', {'branch': 'release'} + Plug 'tpope/vim-surround' + Plug 'sbdchd/neoformat' + Plug 'ThePrimeagen/vim-be-good' + Plug 'junegunn/fzf' + call plug#end() +]] + |
