aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lua/plug.lua
diff options
context:
space:
mode:
authorBlista Kanjo2023-06-23 03:49:02 -0400
committerBlista Kanjo2023-06-23 03:49:02 -0400
commit22f4fa182c2048d1f07dcd6e5729cd946771c9f9 (patch)
treea527dcf6f755db72940a7533343705e5dce2fa47 /.config/nvim/lua/plug.lua
parentb6405dff5dac31b5c1d070d77437095315f290a2 (diff)
refactor: added lua folder
Diffstat (limited to '.config/nvim/lua/plug.lua')
-rw-r--r--.config/nvim/lua/plug.lua15
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()
+]]
+