aboutsummaryrefslogtreecommitdiff
path: root/lua/config_custom_dashboard.lua
blob: 927b2c5c8a92b89803dca2d2ebd722ae30303b17 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
local custom_header = {
[[                                   ]],
[[                                   ]],
[[          ▀████▀▄▄              ▄█ ]],
[[            █▀    ▀▀▄▄▄▄▄    ▄▄▀▀█ ]],
[[    ▄        █          ▀▀▀▀▄  ▄▀  ]],
[[   ▄▀ ▀▄      ▀▄              ▀▄▀  ]],
[[  ▄▀    █     █▀   ▄█▀▄      ▄█    ]],
[[  ▀▄     ▀▄  █     ▀██▀     ██▄█   ]],
[[   ▀▄    ▄▀ █   ▄██▄   ▄  ▄  ▀▀ █  ]],
[[    █  ▄▀  █    ▀██▀    ▀▀ ▀▀  ▄▀  ]],
[[   █   █  █      ▄▄           ▄▀   ]],
[[                                   ]],
}

local custom_center = {
	{icon = "", desc = " Find file", action = "Telescope find_files"},
	{icon = "", desc = " Search Text", action = "Telescope live_grep"},
	{icon = "", desc = " Recent Files", action = "Telescope oldfiles"},
	{icon = "", desc = " Telescope", action = "Telescope"},
	{icon = "", desc = " Terminal", action = "ToggleTerm"},
	{icon = "󰘥", desc = " Help", action = "Telescope help_tags"}
}

require("dashboard").setup {
	theme = "doom",
	config = {
		header = custom_header,
		center = custom_center,
		footer = {"I spend to much time doing this )-:"},
	},

    hide = {
      statusline = true,
      tabline = true,
      winbar = true
    },
}