Add command mappings
This commit is contained in:
parent
da738d3443
commit
672c44d96a
@ -8,3 +8,24 @@ vim.api.nvim_create_autocmd(
|
||||
once = true,
|
||||
}
|
||||
)
|
||||
|
||||
vim.api.nvim_create_autocmd(
|
||||
'BufRead,BufNewFile', {
|
||||
pattern = '*.gohtml',
|
||||
command = 'set filetype=html'
|
||||
}
|
||||
)
|
||||
|
||||
vim.api.nvim_create_autocmd(
|
||||
'BufRead,BufNewFile', {
|
||||
pattern = '*.man',
|
||||
command = 'set filetype=xml'
|
||||
}
|
||||
)
|
||||
|
||||
vim.api.nvim_create_autocmd(
|
||||
'BufRead,BufNewFile', {
|
||||
pattern = '*.w',
|
||||
command = 'set filetype=cpp'
|
||||
}
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user