Skip to content

Commit 131a329

Browse files
committed
Move ts-autotag to be a dependency of treesitter instead of having its own file
1 parent d299352 commit 131a329

3 files changed

Lines changed: 8 additions & 15 deletions

File tree

lua/custom/plugins/ts-tag-autoclose.lua

Lines changed: 0 additions & 13 deletions
This file was deleted.

lua/kickstart/plugins/treesitter.lua

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,14 @@ return {
44
lazy = false,
55
branch = 'main',
66
build = ':TSUpdate',
7-
opts = {},
7+
dependencies = {
8+
'windwp/nvim-ts-autotag',
9+
},
10+
opts = {
11+
autotag = {
12+
enable = true,
13+
},
14+
},
815
-- main = 'nvim-treesitter.configs', -- Sets main module to use for opts
916
-- [[ Configure Treesitter ]] See `:help nvim-treesitter`
1017
config = function(_, opts)

lua/lazy-plugins.lua

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ require('lazy').setup({
4040
require 'custom/plugins/theme',
4141
require 'custom/plugins/indent-blankline',
4242
-- require 'custom/plugins/leetcode',
43-
require 'custom/plugins/ts-tag-autoclose',
4443
}, {
4544
ui = {
4645
-- If you are using a Nerd Font: set icons to an empty table which will use the

0 commit comments

Comments
 (0)