22 lines
		
	
	
	
		
			489 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			489 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
| return {
 | |
|   { import = "plugins.extras.lang.web.typescript-extended" },
 | |
|   {
 | |
|     "williamboman/mason.nvim",
 | |
|     opts = function(_, opts)
 | |
|       vim.list_extend(opts.ensure_installed, {
 | |
|         "graphql-language-service-cli",
 | |
|       })
 | |
|     end,
 | |
|   },
 | |
|   {
 | |
|     "neovim/nvim-lspconfig",
 | |
|     dependencies = {},
 | |
|     opts = {
 | |
|       servers = {
 | |
|         graphql = {
 | |
|           filetypes = { "graphql", "javascript", "javascriptreact", "typescript", "typescriptreact" },
 | |
|         },
 | |
|       },
 | |
|     },
 | |
|   },
 | |
| }
 | 
