local cmd = vim.cmd;
cmd [[
augroup auto_format
au!
au BufWritePre * silent! FormatSync<CR>
augroup END
augroup highlight_yank
au TextYankPost * silent! lua vim.highlight.on_yank { timeout = 150 }
]]