From 04c519a7ab0bfd1f92c129c7c369e2d11d3d402b Mon Sep 17 00:00:00 2001 From: Charles Danesi Date: Sun, 1 Dec 2024 10:15:27 -0500 Subject: [PATCH] chore: remove unneeded code --- .config/nvim/lua/plugins/treesitter.lua | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.config/nvim/lua/plugins/treesitter.lua b/.config/nvim/lua/plugins/treesitter.lua index 62b5e45..4bcc3b4 100644 --- a/.config/nvim/lua/plugins/treesitter.lua +++ b/.config/nvim/lua/plugins/treesitter.lua @@ -4,16 +4,12 @@ return { lazy = true, cmd = { 'TSUpdateSync', 'TSUpdate', 'TSInstall' }, build = ':TSUpdate', - dependencies = { - 'windwp/nvim-ts-autotag', - }, opts = { highlight = { enable = true, additional_vim_regex_highlighting = false, }, indent = { enable = true, disable = {} }, - autotag = { enable = true }, ensure_installed = { 'bash', 'css', @@ -54,8 +50,4 @@ return { }, }, }, - - config = function(_, opts) - require('nvim-treesitter.configs').setup(opts) - end, } \ No newline at end of file