mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-24 15:01:00 +01:00
14 lines
268 B
Lua
14 lines
268 B
Lua
---@brief
|
|
---
|
|
--- https://github.com/fourdigits/django-template-lsp
|
|
---
|
|
--- `djlsp`, a language server for Django templates.
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'djlsp' },
|
|
filetypes = { 'html', 'htmldjango' },
|
|
root_markers = { '.git' },
|
|
settings = {},
|
|
}
|