aboutsummaryrefslogtreecommitdiff
path: root/lua/plugins/dashboard.lua
blob: f78a8b8060d91bcc216e413b5adc9e8592eb4a72 (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
local db = require("dashboard")
--vim.api.nvim_create_autocmd("VimEnter", {
--    callback = function()
--        -- disable line numbers
--        vim.opt_local.number = false
--        vim.opt_local.relativenumber = false
--        -- always start in insert mode
--    end,
--})
db.setup({
	theme = "hyper",
	config = {
		header = {
			[[  ███╗   ██╗ ███████╗ ██████╗  ██╗   ██╗ ██╗ ███╗   ███╗]],
			[[  ████╗  ██║ ██╔════╝██╔═══██╗ ██║   ██║ ██║ ████╗ ████║]],
			[[  ██╔██╗ ██║ █████╗  ██║   ██║ ██║   ██║ ██║ ██╔████╔██║]],
			[[  ██║╚██╗██║ ██╔══╝  ██║   ██║ ╚██╗ ██╔╝ ██║ ██║╚██╔╝██║]],
			[[  ██║ ╚████║ ███████╗╚██████╔╝  ╚████╔╝  ██║ ██║ ╚═╝ ██║]],
			[[  ╚═╝  ╚═══╝ ╚══════╝ ╚═════╝    ╚═══╝   ╚═╝ ╚═╝     ╚═╝]],
		},
    disable_move = false,
		shortcut = {
			{ desc = " Plugins", group = "@property", action = "PackerStatus", key = "p" },
			{
				desc = " Files",
				group = "Label",
				action = "Telescope find_files",
				key = "f",
			},
			{
				desc = " Text",
				group = "Label",
        action =  'enew',
				key = "t",
			},
			{
				desc = " Grep",
				group = "Label",
				action = "Telescope live_grep",
				key = "g",
			},
			{
				desc = " Scheme",
				group = "Label",
				action = "Telescope colorscheme",
				key = "s",
			},
		},
	},
	hide = {
	  statusline = false,
	  tabline = false,
	  winbar = false,
	},
	--  preview = {
--    command,       -- preview command
--    file_path,     -- preview file path
--    file_height,   -- preview file height
--    file_width,    -- preview file width
--  },
--  footer = {}  --your footer
})

--vim.cmd([[
--    autocmd FileType dashboard :highlight DashboardHeader guifg='#b2b2b2'
--    autocmd FileType dashboard :highlight DashboardCenter guifg='#5f8700'
--    autocmd FileType dashboard :highlight DashboardCenterIcon guifg='#0087af'
--    autocmd FileType dashboard :highlight DashboardShortCut guifg='#ffd7ff'
--    autocmd FileType dashboard :highlight DashboardFooter guifg='#878787'
--]])