diff options
author | Valentin Popov <valentin@popov.link> | 2023-03-30 16:11:06 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2023-03-30 16:11:06 +0300 |
commit | 8419ce349276901b99548c8ffdcf5598ae15317c (patch) | |
tree | 5bcd68f18ded3d3ba73c0bb325227ef3b21d60d3 /lua/plugins.lua | |
parent | aa1b9a12010b29502cbec822d3a20c0c90b34e34 (diff) | |
download | nvim-config-8419ce349276901b99548c8ffdcf5598ae15317c.tar.xz nvim-config-8419ce349276901b99548c8ffdcf5598ae15317c.zip |
Installed some plugins
Signed-off-by: Valentin Popov <valentin@popov.link>
Diffstat (limited to 'lua/plugins.lua')
-rw-r--r-- | lua/plugins.lua | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lua/plugins.lua b/lua/plugins.lua index cfc4e08..f306c12 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -6,7 +6,11 @@ vim.cmd [[packadd packer.nvim]] return require('packer').startup(function(use) use { 'wbthomason/packer.nvim', opt = true } - use 'EdenEast/nightfox.nvim' + use { 'EdenEast/nightfox.nvim' } use { 'nvim-lualine/lualine.nvim' } + + use { 'numToStr/Comment.nvim' } + + use { 'nvim-treesitter/nvim-treesitter' } end) |