diff options
author | max397574 <[email protected]> | 2021-11-06 16:13:56 +0100 |
---|---|---|
committer | max397574 <[email protected]> | 2021-11-06 16:13:56 +0100 |
commit | f64f8190d3f1a692e39bd19087fc032728fbefe0 (patch) | |
tree | 7bc17cc63259884960fb0be78e0e0ebf0be5700f /lua/startup/themes | |
parent | c01f4bbee1fa5581d84f09f840ccd0ba57056397 (diff) |
refactor(all): 🔄stylua
Diffstat (limited to 'lua/startup/themes')
-rw-r--r-- | lua/startup/themes/evil_startup.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/startup/themes/evil_startup.lua b/lua/startup/themes/evil_startup.lua index d417cbf..68bb80b 100644 --- a/lua/startup/themes/evil_startup.lua +++ b/lua/startup/themes/evil_startup.lua @@ -75,8 +75,8 @@ local settings = { clock = { type = "text", content = function() - local clock = " " .. os.date "%H:%M" - local date = " " .. os.date "%d-%m-%y" + local clock = " " .. os.date("%H:%M") + local date = " " .. os.date("%d-%m-%y") return { clock, date } end, oldfiles_directory = false, |