feat(lsp): Add yaml language server

This commit is contained in:
2026-04-17 14:57:29 +02:00
parent 21bb788396
commit 2b3b2c5996
3 changed files with 19 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
-- ┌ ┐
-- │ GitHub Actions │
-- └ ┘
local lsp = vim.lsp
local capabilities = require("lsp-options").capabilities
local on_attach = require("lsp-options").on_attach
lsp.config("yamlls", {
capabilities = capabilities,
on_attach = on_attach,
})
-- ── Enable configs ───────────────────────────────────────────────
local enable = vim.lsp.enable
enable("yamlls")
+1
View File
@@ -38,6 +38,7 @@ return {
require("plugins.lsp.ls.sql")
require("plugins.lsp.ls.text")
require("plugins.lsp.ls.web")
require("plugins.lsp.ls.yaml")
-- ───────────────────────────────────────────────────────────────────
end,
}
+1
View File
@@ -47,6 +47,7 @@ return {
"verible",
"vtsls",
"vue_ls",
"yamlls"
},
-- auto-install configured servers (with lspconfig)
automatic_enable = false,