add more snippets and fix autotag
This commit is contained in:
parent
638966334b
commit
810901880d
|
@ -0,0 +1 @@
|
||||||
|
require("luasnip.loaders.from_vscode").lazy_load()
|
|
@ -12,7 +12,22 @@ return {
|
||||||
"famiu/bufdelete.nvim",
|
"famiu/bufdelete.nvim",
|
||||||
"tpope/vim-repeat",
|
"tpope/vim-repeat",
|
||||||
"JoosepAlviste/nvim-ts-context-commentstring",
|
"JoosepAlviste/nvim-ts-context-commentstring",
|
||||||
"windwp/nvim-ts-autotag",
|
{
|
||||||
|
"windwp/nvim-ts-autotag",
|
||||||
|
dependencies = {
|
||||||
|
"nvim-treesitter/nvim-treesitter",
|
||||||
|
},
|
||||||
|
config = function()
|
||||||
|
require('nvim-ts-autotag').setup()
|
||||||
|
end,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
-- snippets
|
||||||
|
'L3MON4D3/LuaSnip',
|
||||||
|
dependencies = {
|
||||||
|
'rafamadriz/friendly-snippets',
|
||||||
|
},
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"lukas-reineke/virt-column.nvim",
|
"lukas-reineke/virt-column.nvim",
|
||||||
opts = {
|
opts = {
|
||||||
|
|
Loading…
Reference in New Issue