2022-01-04 07:28:29 -07:00
|
|
|
if vim.g.did_load_filetypes and vim.g.did_load_filetypes ~= 0 then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
-- For now, make this opt-in with a global variable
|
|
|
|
if vim.g.do_filetype_lua ~= 1 then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
vim.cmd [[
|
|
|
|
augroup filetypedetect
|
2022-01-05 09:50:54 -07:00
|
|
|
au BufRead,BufNewFile * call v:lua.vim.filetype.match(expand('<afile>'))
|
2022-01-04 07:28:29 -07:00
|
|
|
|
|
|
|
" These *must* be sourced after the autocommand above is created
|
|
|
|
runtime! ftdetect/*.vim
|
|
|
|
runtime! ftdetect/*.lua
|
|
|
|
|
|
|
|
" Set a marker so that the ftdetect scripts are not sourced a second time by filetype.vim
|
|
|
|
let g:did_load_ftdetect = 1
|
|
|
|
|
|
|
|
augroup END
|
|
|
|
]]
|
2022-01-04 15:02:01 -07:00
|
|
|
|
|
|
|
if not vim.g.ft_ignore_pat then
|
|
|
|
vim.g.ft_ignore_pat = "\\.\\(Z\\|gz\\|bz2\\|zip\\|tgz\\)$"
|
|
|
|
end
|