32 lines
792 B
Lua
32 lines
792 B
Lua
vim.api.nvim_create_autocmd({'BufRead', 'BufNewFile'}, {
|
|
pattern = '*.gohtml',
|
|
command = 'set filetype=html'
|
|
})
|
|
|
|
vim.api.nvim_create_autocmd({'BufRead', 'BufNewFile'}, {
|
|
pattern = {'*.man', '*.kbom'},
|
|
command = 'set filetype=xml'
|
|
})
|
|
|
|
vim.api.nvim_create_autocmd({'BufRead', 'BufNewFile'}, {
|
|
pattern = '*.w',
|
|
command = 'set filetype=cpp'
|
|
})
|
|
|
|
vim.api.nvim_create_autocmd({'BufRead', 'BufNewFile'}, {
|
|
pattern = {'sources', 'sources.inc', 'dirs'},
|
|
command = 'set filetype=make'
|
|
})
|
|
|
|
vim.api.nvim_create_autocmd({'FocusGained', 'BufEnter', 'CursorHold'}, {
|
|
pattern = '*',
|
|
command = 'checktime'
|
|
})
|
|
|
|
vim.api.nvim_create_autocmd({'FileType'}, {
|
|
pattern = '*',
|
|
callback = function()
|
|
vim.opt_local.formatoptions:remove({'c', 'r', 'o'})
|
|
end
|
|
})
|