Add autotag
This commit is contained in:
parent
abfb080f62
commit
59684f6645
26
init.lua
26
init.lua
|
@ -228,19 +228,19 @@ require('lazy').setup({
|
||||||
-- NOTE: Plugins can be added with a link (or for a github repo: 'owner/repo' link).
|
-- NOTE: Plugins can be added with a link (or for a github repo: 'owner/repo' link).
|
||||||
'tpope/vim-sleuth', -- Detect tabstop and shiftwidth automatically
|
'tpope/vim-sleuth', -- Detect tabstop and shiftwidth automatically
|
||||||
'tpope/vim-surround',
|
'tpope/vim-surround',
|
||||||
-- {
|
{
|
||||||
-- 'windwp/nvim-autopairs',
|
'windwp/nvim-autopairs',
|
||||||
-- event = 'InsertEnter',
|
event = 'InsertEnter',
|
||||||
-- config = function()
|
config = function()
|
||||||
-- require('nvim-autopairs').setup {}
|
require('nvim-autopairs').setup {}
|
||||||
-- end,
|
end,
|
||||||
-- },
|
},
|
||||||
-- {
|
{
|
||||||
-- 'windwp/nvim-ts-autotag',
|
'windwp/nvim-ts-autotag',
|
||||||
-- config = function()
|
config = function()
|
||||||
-- require('nvim-ts-autotag').setup {}
|
require('nvim-ts-autotag').setup {}
|
||||||
-- end,
|
end,
|
||||||
-- },
|
},
|
||||||
|
|
||||||
-- NOTE: Plugins can also be added by using a table,
|
-- NOTE: Plugins can also be added by using a table,
|
||||||
-- with the first argument being the link and the following
|
-- with the first argument being the link and the following
|
||||||
|
|
Loading…
Reference in New Issue