aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lua/plug.lua
diff options
context:
space:
mode:
authorBlista Kanjo2023-06-23 03:53:00 -0400
committerBlista Kanjo2023-06-23 03:53:00 -0400
commit8218d7b4f37037c205d3b29ce972cff0ece01af5 (patch)
tree74f3d8a1fd8c366546c8306709f9b4039dab881a /.config/nvim/lua/plug.lua
parent8a336a347a22f2be35928ed52978d3bde18be532 (diff)
refactor: comment structure for plug.lua
Diffstat (limited to '.config/nvim/lua/plug.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()
]]