nvim/ftdetect/html.lua

6 lines
205 B
Lua
Raw Permalink Normal View History

-- Инициализация настроек для файлов с типом ".log"
vim.api.nvim_create_autocmd({ 'BufNewFile', 'BufRead' }, {
pattern = '*.html',
command = 'set filetype=html'
})