diff --git a/lua/qvim/set.lua b/lua/qvim/set.lua index f28d7ce..020235c 100644 --- a/lua/qvim/set.lua +++ b/lua/qvim/set.lua @@ -27,15 +27,3 @@ vim.opt.updatetime = 50 -- vim.opt.colorcolumn = "80" vim.opt.clipboard = "unnamedplus" - - -function DetectGoHtmlTmpl() - if expand('%:e') == "html" && search("{{") != 0 - setfiletype gohtmltmpl - endif -endfunction - -augroup filetypedetect - " gohtmltmpl - au BufRead,BufNewFile *.html call DetectGoHtmlTmpl() -augroup END