1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
local settings = require "startup.themes.default"
settings = {
header = {
type = "text",
align = "left",
margin = 5,
content = require("startup.buildingblocks.headers").default_header(),
},
body = {
type = "oldfiles",
oldfiles_directory = false,
align = "center",
fold = false,
title = "Oldfiles",
margin = 5,
content = { "startup.nvim" },
highlight = "TSString",
default_color = "#FFFFFF",
command = "",
oldfiles_amount = 10,
},
body_2 = {
type = "oldfiles",
oldfiles_directory = true,
align = "center",
fold = false,
title = "Oldfiles of Directory",
margin = 5,
content = {},
highlight = "TSString",
default_color = "#FFFFFF",
command = "",
oldfiles_amount = 10,
},
footer = {
type = "text",
content = require("startup.buildingblocks.functions").quote(),
},
options = {
oldfiles_amount = 3,
paddings = { 1, 2, 2, 3 },
},
colors = {
background = "#1f2227",
},
parts = { "header", "body", "body_2", "footer" },
}
return settings
|