Fix indent, remove yaml key order warning

This commit is contained in:
Andy Teijelo 2023-06-09 11:20:30 -04:00
parent b286bcaa74
commit 1800e5d2e1
2 changed files with 11 additions and 2 deletions

View file

@ -4,8 +4,8 @@
vim.opt.relativenumber = false vim.opt.relativenumber = false
vim.opt.conceallevel = 0 vim.opt.conceallevel = 0
-- vim.opt.completeopt = { "menuone", "noselect" }
vim.opt.timeoutlen = 1000 vim.opt.timeoutlen = 1000
vim.opt.list = false vim.opt.list = false
vim.opt.pumblend = 0 vim.opt.pumblend = 0
-- vim.opt.cmdheight = 1 vim.opt.tabstop = 4
vim.opt.shiftwidth = 4

View file

@ -12,6 +12,15 @@ return {
end, end,
opts = { opts = {
autoformat = false, autoformat = false,
servers = {
yamlls = {
settings = {
yaml = {
keyOrdering = false,
},
},
},
},
}, },
}, },
} }