mirror of
https://github.com/joshuadavidthomas/django-language-server.git
synced 2025-07-07 20:55:02 +00:00
10 lines
237 B
Lua
10 lines
237 B
Lua
return {
|
|
"joshuadavidthomas/django-language-server",
|
|
dependencies = {
|
|
"neovim/nvim-lspconfig",
|
|
},
|
|
config = function(plugin, opts)
|
|
vim.opt.rtp:append(plugin.dir .. "/editors/nvim")
|
|
require("djls").setup(opts)
|
|
end,
|
|
}
|