Update autocmd

This commit is contained in:
Alex Yatskov 2023-11-04 11:30:53 -07:00
parent d402ba0699
commit 9d67555f2e

View File

@ -1,19 +1,16 @@
vim.api.nvim_create_autocmd( vim.api.nvim_create_autocmd({'BufRead', 'BufNewFile'}, {
'BufRead,BufNewFile', {
pattern = '*.gohtml', pattern = '*.gohtml',
command = 'set filetype=html' command = 'set filetype=html'
} }
) )
vim.api.nvim_create_autocmd( vim.api.nvim_create_autocmd({'BufRead', 'BufNewFile'}, {
'BufRead,BufNewFile', {
pattern = '*.man', pattern = '*.man',
command = 'set filetype=xml' command = 'set filetype=xml'
} }
) )
vim.api.nvim_create_autocmd( vim.api.nvim_create_autocmd({'BufRead', 'BufNewFile'}, {
'BufRead,BufNewFile', {
pattern = '*.w', pattern = '*.w',
command = 'set filetype=cpp' command = 'set filetype=cpp'
} }