neovim configuration using rocks.nvim plugin manager

fix(autocmds): ignore `htmldjango`

+9
+9
lua/core/autocmds.lua
··· 106 106 end, 107 107 }) 108 108 109 + -- HACK: ignore htmldjango 110 + au("FileType", { 111 + group = ftplugins, 112 + pattern = "htmldjango", 113 + callback = function (ev) 114 + vim.bo[ev.buf].filetype = "html" 115 + end 116 + }) 117 + 109 118 au("CmdlineEnter", { 110 119 group = aug("auto_hlsearch"), 111 120 callback = vim.schedule_wrap(function()