vim.api.nvim_create_autocmd("FileType", {
pattern = "yaml",
callback = function()
vim.opt_local.expandtab = false
end
})