Add Prisma to lsp

This commit is contained in:
Juan Magalhães 2023-10-16 11:28:38 -03:00
parent 089fedcb89
commit b00237e64a
2 changed files with 4 additions and 1 deletions

View File

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

View File

@ -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!)