From 76419a73533efaebf7630265530c7d17358b19fa Mon Sep 17 00:00:00 2001 From: neon_arch Date: Mon, 11 Dec 2023 21:10:28 +0300 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat:=20provide=20code=20to=20parse?= =?UTF-8?q?=20the=20new=20config=20option=20(#424)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/config/parser.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/config/parser.rs b/src/config/parser.rs index b33936a..20a4a1a 100644 --- a/src/config/parser.rs +++ b/src/config/parser.rs @@ -115,6 +115,7 @@ impl Config { style: Style::new( globals.get::<_, String>("theme")?, globals.get::<_, String>("colorscheme")?, + globals.get::<_, Option>("animation")?, ), #[cfg(feature = "redis-cache")] redis_url: globals.get::<_, String>("redis_url")?,