this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

disable openapi lang server init

+10 -10
+10 -10
nvim/lua/plugins/lsp.lua
··· 140 140 }) 141 141 142 142 -- Manually initialize openapi-language-server since it isn't part of mason or lspconfig 143 - vim.api.nvim_create_autocmd("FileType", { 144 - pattern = "yaml", 145 - callback = function() 146 - vim.lsp.start({ 147 - cmd = { "openapi-language-server" }, 148 - filetypes = { "yaml" }, 149 - root_dir = vim.fn.getcwd(), 150 - }) 151 - end, 152 - }) 143 + -- vim.api.nvim_create_autocmd("FileType", { 144 + -- pattern = "yaml", 145 + -- callback = function() 146 + -- vim.lsp.start({ 147 + -- cmd = { "openapi-language-server" }, 148 + -- filetypes = { "yaml" }, 149 + -- root_dir = vim.fn.getcwd(), 150 + -- }) 151 + -- end, 152 + -- }) 153 153 end, 154 154 }, 155 155 {