/
alkis
/
nvim
Обзор
Документация
Войти
/
alkis
/
nvim
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
lua/plugins/autotag.lua
23 строки
593 B
avkis
Last changes
30 июн 2025, 06:49
30 июн 2025, 06:49
dce13aa
Код
Авторство
О чём код?
return { "windwp/nvim-ts-autotag", config = function() local configs = require("nvim-ts-autotag") configs.setup({ opts = { -- Defaults enable_close = true, -- Auto close tags enable_rename = true, -- Auto rename pairs of tags enable_close_on_slash = false, -- Auto close on trailing </ }, -- Also override individual filetype configs, these take priority. -- Empty by default, useful if one of the "opts" global settings -- doesn't work well in a specific filetype per_filetype = { ["html"] = { enable_close = false, }, }, }) end, }