{ ... }: {
	text = ''
		vim.o.autoread = true
		vim.api.nvim_create_autocmd({ "BufEnter", "CursorHold", "CursorHoldI", "FocusGained" }, {
			command = "if mode() != 'c' | checktime | endif",
			pattern = { "*" },
		})
	'';
}