mirror of
https://github.com/LazyVim/LazyVim.git
synced 2026-07-25 14:01:06 +00:00
feat(extra): Add prisma support and config
This commit is contained in:
parent
eca8692451
commit
f64e3ffca2
1 changed files with 19 additions and 0 deletions
19
lua/lazyvim/plugins/extras/lang/prisma.lua
Normal file
19
lua/lazyvim/plugins/extras/lang/prisma.lua
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
return {
|
||||
recommended = {
|
||||
ft = "prisma",
|
||||
},
|
||||
{
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
opts = {
|
||||
ensure_installed = { "prisma" },
|
||||
},
|
||||
},
|
||||
{
|
||||
"neovim/nvim-lspconfig",
|
||||
opts = {
|
||||
servers = {
|
||||
prismals = {},
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue