Add neovim config

This commit is contained in:
Valeriy Filippov
2026-03-05 16:34:38 +03:00
commit 210e99d004
36 changed files with 845 additions and 0 deletions

18
nvim/lsp/yamlls.lua Normal file
View File

@@ -0,0 +1,18 @@
-- https://github.com/neovim/nvim-lspconfig/blob/master/lsp/yamlls.lua
return {
cmd = { "yaml-language-server", "--stdio" },
filetypes = { "yaml", 'yaml.docker-compose', 'yaml.gitlab', 'yaml.helm-values' },
root_markers = { ".git" },
settings = {
redhat = {
telemetry = {
enabled = false
}
},
yaml = {
format = {
enable = true
}
}
},
}