dotvim/lua/config/autocmd.lua

20 lines
486 B
Lua
Raw Normal View History

2023-11-04 18:30:53 +00:00
vim.api.nvim_create_autocmd({'BufRead', 'BufNewFile'}, {
2024-08-05 00:59:34 +00:00
pattern = '*.gohtml',
command = 'set filetype=html'
})
2022-11-13 04:06:05 +00:00
2023-11-04 18:30:53 +00:00
vim.api.nvim_create_autocmd({'BufRead', 'BufNewFile'}, {
2024-08-05 00:59:34 +00:00
pattern = {'*.man', '*.kbom'},
command = 'set filetype=xml'
})
2022-11-13 04:06:05 +00:00
2023-11-04 18:30:53 +00:00
vim.api.nvim_create_autocmd({'BufRead', 'BufNewFile'}, {
2024-08-05 00:59:34 +00:00
pattern = '*.w',
command = 'set filetype=cpp'
})
vim.api.nvim_create_autocmd({'FocusGained', 'BufEnter', 'CursorHold'}, {
pattern = '*',
command = 'checktime'
})