Add Prisma to lsp

pull/1479/head
Juan Magalhães 2 years ago
parent 089fedcb89
commit b00237e64a

@ -15,6 +15,8 @@ local servers = {
},
tailwindcss = {},
prismals = {},
lua_ls = {
Lua = {
workspace = { checkThirdParty = false },

@ -3,7 +3,8 @@
-- See `:help nvim-treesitter`
require('nvim-treesitter.configs').setup {
-- 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.
-- Defaults to false (but you can change for yourself!)

Loading…
Cancel
Save