diff options
author | max397574 <[email protected]> | 2021-10-18 13:26:59 +0200 |
---|---|---|
committer | max397574 <[email protected]> | 2021-10-18 13:26:59 +0200 |
commit | 27b178e3eb8626fd8352f7f0ac0acd03c22ceaec (patch) | |
tree | db3c019489191ba0e8d99efd6fe898b31a393a76 /lua | |
parent | df898c864878b7f0850c51dc31c2839c797aeb15 (diff) |
feat(themes): ✨added startify
Diffstat (limited to 'lua')
-rw-r--r-- | lua/startup/themes/startify.lua | 24 |
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 |