diff options
Diffstat (limited to '.config/nvim/lua/user/plugins.lua')
-rw-r--r-- | .config/nvim/lua/user/plugins.lua | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.config/nvim/lua/user/plugins.lua b/.config/nvim/lua/user/plugins.lua index 2344087..ee7dea7 100644 --- a/.config/nvim/lua/user/plugins.lua +++ b/.config/nvim/lua/user/plugins.lua @@ -4,9 +4,14 @@ -- plugins to be installed plugins = { "folke/lazy.nvim", -- plugin manager + "nvim-lua/popup.nvim", -- some functions for other plugins + "nvim-lua/plenary.nvim", -- some functions for other plugins "folke/which-key.nvim", -- pretty self-descriptive name "rafi/awesome-vim-colorschemes", -- same here - "tpope/vim-commentary" -- gc & gcc for commenting + "tpope/vim-commentary", -- gc & gcc for commenting + "tpope/vim-surround", -- replace quotes e.t.c + "nvim-treesitter/nvim-treesitter", -- folding code, advanced syntax highlighting & sitting on a tree + "preservim/nerdtree", -- file explorer } -- options for lazy @@ -32,4 +37,5 @@ vim.opt.rtp:prepend(lazypath) -- initialization lazy = require("lazy") lazy.setup(plugins, opts) +-- lazy.load('nerdtree') |