Add Prisma to lsp
This commit is contained in:
parent
089fedcb89
commit
b00237e64a
|
@ -15,6 +15,8 @@ local servers = {
|
||||||
},
|
},
|
||||||
tailwindcss = {},
|
tailwindcss = {},
|
||||||
|
|
||||||
|
prismals = {},
|
||||||
|
|
||||||
lua_ls = {
|
lua_ls = {
|
||||||
Lua = {
|
Lua = {
|
||||||
workspace = { checkThirdParty = false },
|
workspace = { checkThirdParty = false },
|
||||||
|
|
|
@ -3,7 +3,8 @@
|
||||||
-- See `:help nvim-treesitter`
|
-- See `:help nvim-treesitter`
|
||||||
require('nvim-treesitter.configs').setup {
|
require('nvim-treesitter.configs').setup {
|
||||||
-- Add languages to be installed here that you want installed for treesitter
|
-- Add languages to be installed here that you want installed for treesitter
|
||||||
ensure_installed = { 'c', 'cpp', 'go', 'lua', 'python', 'rust', 'tsx', 'typescript', 'javascript', 'vimdoc', 'vim' },
|
ensure_installed = { 'c', 'cpp', 'go', 'lua', 'python', 'rust', 'tsx', 'typescript', 'javascript', 'vimdoc', 'vim',
|
||||||
|
'prisma' },
|
||||||
|
|
||||||
-- Autoinstall languages that are not installed.
|
-- Autoinstall languages that are not installed.
|
||||||
-- Defaults to false (but you can change for yourself!)
|
-- Defaults to false (but you can change for yourself!)
|
||||||
|
|
Loading…
Reference in New Issue