i use arch btw
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Configure nvim-ts-autotag to close tags on slash

+7 -4
+7 -4
nvim/.config/nvim/lua/plugins.lua
··· 111 111 "RRethy/nvim-treesitter-endwise", 112 112 { 113 113 "windwp/nvim-ts-autotag", 114 - config = true, 114 + config = function() 115 + require("nvim-ts-autotag").setup({ 116 + opts = { 117 + enable_close_on_slash = true, 118 + }, 119 + }) 120 + end, 115 121 }, 116 122 }, 117 123 config = function() ··· 171 177 }, 172 178 }, 173 179 endwise = { 174 - enable = true, 175 - }, 176 - autotag = { 177 180 enable = true, 178 181 }, 179 182 })