aboutsummaryrefslogtreecommitdiff
path: root/lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua')
-rw-r--r--lua/startup/themes/startify.lua24
1 files changed, 24 insertions, 0 deletions
diff --git a/lua/startup/themes/startify.lua b/lua/startup/themes/startify.lua
new file mode 100644
index 0000000..ec2612e
--- /dev/null
+++ b/lua/startup/themes/startify.lua
@@ -0,0 +1,24 @@
+local settings = {
+ header = {
+ type = "text",
+ align = "left",
+ margin = 5,
+ content = require("startup.buildingblocks.headers").default_header(),
+ },
+ body = {
+ type = "oldfiles",
+ align = "left",
+ },
+ footer = {
+ type = "text",
+ content = require("startup.buildingblocks.functions").quote(),
+ },
+ options = {
+ oldfiles_amount = 3,
+ padding = {
+ body_footer = 2,
+ },
+ },
+}
+
+return settings