1
0
mirror of https://github.com/dcarrillo/dotfiles.git synced 2025-07-01 18:39:27 +00:00

[neovim] Add yaml-companion module and update plugins

This commit is contained in:
2023-02-15 20:19:53 +01:00
parent dd77a5e33b
commit 47a9afae4b
5 changed files with 38 additions and 12 deletions

View File

@ -7,5 +7,6 @@ require("plugins.lsp.mason")
require("plugins.lsp.handlers").setup()
require("plugins.lsp.null-ls")
require("plugins.lsp.lsp-saga")
require("plugins.lsp.yaml-companion")
win.default_options.border = "rounded"

View File

@ -0,0 +1,2 @@
local cfg = require("yaml-companion").setup({})
require("lspconfig")["yamlls"].setup(cfg)