From cd84332d2663632247d44429f06106f2b12e6a56 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Mon, 22 May 2023 17:58:17 -0500 Subject: [PATCH] refactor(nvim): make azure pipelines match all filetypes in the schema We use a filetype match for the lsp in general, better to rely on that than the internal parsing of the language server --- dots/.config/nvim/lua/plugins/configs/lsp.lua | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dots/.config/nvim/lua/plugins/configs/lsp.lua b/dots/.config/nvim/lua/plugins/configs/lsp.lua index ae506668..91196f8e 100755 --- a/dots/.config/nvim/lua/plugins/configs/lsp.lua +++ b/dots/.config/nvim/lua/plugins/configs/lsp.lua @@ -256,8 +256,7 @@ lspconfig.azure_pipelines_ls.setup({ yaml = { schemas = { ["https://raw.githubusercontent.com/microsoft/azure-pipelines-vscode/master/service-schema.json"] = { - "*.yml", - "*.yaml", + "*", }, }, },