diff --git a/neovim/lazy-lock.json b/neovim/lazy-lock.json index ae69993..c551148 100644 --- a/neovim/lazy-lock.json +++ b/neovim/lazy-lock.json @@ -21,6 +21,7 @@ "nvim-surround": { "branch": "main", "commit": "1c2ef599abeeb98e40706830bcd27e90e259367a" }, "nvim-treesitter": { "branch": "master", "commit": "9ab4e9cc8989e3811b14897cd0eb21ae35e5541e" }, "nvim-treesitter-textobjects": { "branch": "master", "commit": "bd103502252027434ec42f628d2dbf54821d4ce6" }, + "nvim-ts-autotag": { "branch": "main", "commit": "6be1192965df35f94b8ea6d323354f7dc7a557e4" }, "openingh.nvim": { "branch": "main", "commit": "27655e19d4cad90f2ceed4f0a08cf7ebfb3a8e40" }, "plenary.nvim": { "branch": "master", "commit": "9ce85b0f7dcfe5358c0be937ad23e456907d410b" }, "rust-tools.nvim": { "branch": "master", "commit": "0cc8adab23117783a0292a0c8a2fbed1005dc645" }, diff --git a/neovim/lua/plugins/ide.lua b/neovim/lua/plugins/ide.lua index cd26810..6b8e4f2 100644 --- a/neovim/lua/plugins/ide.lua +++ b/neovim/lua/plugins/ide.lua @@ -136,6 +136,15 @@ return { "nvim-treesitter/nvim-treesitter", }, }, + { + "windwp/nvim-ts-autotag", + config = { + autotag = { + enabled = true, + enable_close_on_slash = false, + }, + }, + }, -- Telescope {