aboutsummaryrefslogtreecommitdiff
path: root/lua/startup/themes
diff options
context:
space:
mode:
Diffstat (limited to 'lua/startup/themes')
-rw-r--r--lua/startup/themes/evil_startup.lua22
1 files changed, 20 insertions, 2 deletions
diff --git a/lua/startup/themes/evil_startup.lua b/lua/startup/themes/evil_startup.lua
index b170deb..517e0da 100644
--- a/lua/startup/themes/evil_startup.lua
+++ b/lua/startup/themes/evil_startup.lua
@@ -63,6 +63,24 @@ local settings = {
oldfiles_amount = 10,
},
+ clock = {
+ type = "text",
+ content = function()
+ local clock = " " .. os.date "%H:%M"
+ local date = " " .. os.date "%d-%m-%y"
+ return { clock, date }
+ end,
+ oldfiles_directory = false,
+ align = "center",
+ fold_section = false,
+ title = "",
+ margin = 5,
+ highlight = "TSString",
+ default_color = "#FFFFFF",
+ command = "",
+ oldfiles_amount = 10,
+ },
+
footer_2 = {
type = "text",
content = require("startup.buildingblocks.functions").packer_plugins(),
@@ -80,11 +98,11 @@ local settings = {
options = {
mapping_keys = true,
empty_lines_between_mappings = true,
- paddings = { 1, 1, 1, 1, 1 },
+ paddings = { 1, 1, 1, 1, 1, 1 },
},
colors = {
background = "#1f2227",
},
- parts = { "header", "body", "body_2", "footer", "footer_2" },
+ parts = { "header", "body", "body_2", "footer", "clock", "footer_2" },
}
return settings