feat(extra): add prisma support and config (#3684)
## What is this PR for? Adding support for prisma ## Does this PR fix an existing issue? No ## Checklist - [x] I've read the [CONTRIBUTING](https://github.com/LazyVim/LazyVim/blob/main/CONTRIBUTING.md) guidelines. --------- Co-authored-by: Ben Puryear <54869170+Ben10164@users.noreply.github.com>
This commit is contained in:
21
lua/lazyvim/plugins/extras/lang/prisma.lua
Normal file
21
lua/lazyvim/plugins/extras/lang/prisma.lua
Normal file
@ -0,0 +1,21 @@
|
||||
return {
|
||||
recommended = function()
|
||||
return LazyVim.extras.wants({
|
||||
ft = "prisma",
|
||||
})
|
||||
end,
|
||||
{
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
opts = {
|
||||
ensure_installed = { "prisma" },
|
||||
},
|
||||
},
|
||||
{
|
||||
"neovim/nvim-lspconfig",
|
||||
opts = {
|
||||
servers = {
|
||||
prismals = {},
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
Reference in New Issue
Block a user