add simple test project (#132)

This commit is contained in:
Josh Thomas 2025-05-02 22:29:52 -05:00 committed by GitHub
parent f778bef5db
commit dab4e71a51
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
16 changed files with 263 additions and 0 deletions

7
.lazy.lua Normal file
View file

@ -0,0 +1,7 @@
vim.lsp.config["djls"] = {
cmd = { "djls", "serve" },
filetypes = { "htmldjango" },
root_markers = { "manage.py", "pyproject.toml" },
}
vim.lsp.enable("djls")
return {}