diff --git a/neovim/.config/nvim/after/plugin/lsp/other.lua b/neovim/.config/nvim/after/plugin/lsp/other.lua index 18ad56d..bf67aed 100644 --- a/neovim/.config/nvim/after/plugin/lsp/other.lua +++ b/neovim/.config/nvim/after/plugin/lsp/other.lua @@ -76,3 +76,10 @@ vim.lsp.config.clangd = { root_markers = { "Makefile", "main.c" }, } vim.lsp.enable("clangd") + +-- yaml +vim.lsp.config.yaml = { + cmd = { "yaml-language-server", "--stdio" }, + filetypes = { "yaml" }, +} +vim.lsp.enable("yaml")