aboutsummaryrefslogtreecommitdiff
path: root/lua/startup/themes/startify.lua
blob: ec2612e30b61084777ebf51ee646f359ed22ca62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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