We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dab4e71 commit d2f373dCopy full SHA for d2f373d
.lazy.lua
@@ -4,4 +4,12 @@ vim.lsp.config["djls"] = {
4
root_markers = { "manage.py", "pyproject.toml" },
5
}
6
vim.lsp.enable("djls")
7
+
8
+vim.api.nvim_create_autocmd({ "BufRead", "BufNewFile" }, {
9
+ pattern = "*/tests/**/*.html",
10
+ callback = function()
11
+ vim.bo.filetype = "htmldjango"
12
+ end,
13
+})
14
15
return {}
0 commit comments