add neovim plugin (#59)

This commit is contained in:
Josh Thomas 2025-01-03 08:55:54 -06:00 committed by GitHub
parent d9d0f4ee87
commit accb8fdfb4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 176 additions and 65 deletions

10
lazy.lua Normal file
View file

@ -0,0 +1,10 @@
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,
}