Add comment plugin
This commit is contained in:
parent
a649e15e92
commit
cd47d8f48b
2 changed files with 9 additions and 0 deletions
|
@ -3,6 +3,7 @@ function configure_packages()
|
||||||
call_with_helpers(require('plugins.compe').init)
|
call_with_helpers(require('plugins.compe').init)
|
||||||
call_with_helpers(require('plugins.nvim-treesitter').init)
|
call_with_helpers(require('plugins.nvim-treesitter').init)
|
||||||
call_with_helpers(require('plugins.web-devicons').init)
|
call_with_helpers(require('plugins.web-devicons').init)
|
||||||
|
call_with_helpers(require('plugins.nvim-comment').init)
|
||||||
end
|
end
|
||||||
|
|
||||||
function install_packages()
|
function install_packages()
|
||||||
|
@ -27,6 +28,7 @@ function install_packages()
|
||||||
use 'kyazdani42/nvim-web-devicons' -- removing this line doesn't change the error
|
use 'kyazdani42/nvim-web-devicons' -- removing this line doesn't change the error
|
||||||
use 'kyazdani42/nvim-tree.lua'
|
use 'kyazdani42/nvim-tree.lua'
|
||||||
use 'kdheepak/lazygit.nvim'
|
use 'kdheepak/lazygit.nvim'
|
||||||
|
use 'terrortylor/nvim-comment'
|
||||||
end
|
end
|
||||||
|
|
||||||
function init()
|
function init()
|
||||||
|
|
7
configs/nvim/lua/plugins/nvim-comment.lua
Normal file
7
configs/nvim/lua/plugins/nvim-comment.lua
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
local function init()
|
||||||
|
require('nvim_comment').setup()
|
||||||
|
end
|
||||||
|
|
||||||
|
return {
|
||||||
|
init = init
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue