aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lua
diff options
context:
space:
mode:
Diffstat (limited to '.config/nvim/lua')
-rw-r--r--.config/nvim/lua/plug.lua5
1 files changed, 3 insertions, 2 deletions
diff --git a/.config/nvim/lua/plug.lua b/.config/nvim/lua/plug.lua
index 63eac2e..7a3e916 100644
--- a/.config/nvim/lua/plug.lua
+++ b/.config/nvim/lua/plug.lua
@@ -1,8 +1,7 @@
--- Plugin manager (vim-plug)
+-- legacy plugin manager config (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'}
@@ -10,6 +9,8 @@ vim.cmd [[
Plug 'sbdchd/neoformat'
Plug 'ThePrimeagen/vim-be-good'
Plug 'junegunn/fzf'
+
+ " Plug 'LunarWatcher/auto-pairs'
call plug#end()
]]