aboutsummaryrefslogtreecommitdiff
path: root/lua/plugins/mini/starter.lua
blob: 0e0ac30d418e6a37de79c5d75c929e0848f3b94c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
-- simple startup screen
local starter = require('mini.starter')
starter.setup({
  header = "hello, friend",
  footer = "you're gay for my code, you're code gay.",
  evaluate_single = true,
  items = {
    starter.sections.builtin_actions(),
    starter.sections.recent_files(5, true),
    starter.sections.recent_files(5, false),
  },
  content_hooks = {
    starter.gen_hook.adding_bullet(),
    starter.gen_hook.aligning("center", "center"),
  },
})