diff options
| author | srdusr <trevorgray@srdusr.com> | 2023-08-17 22:11:39 +0200 |
|---|---|---|
| committer | srdusr <trevorgray@srdusr.com> | 2023-08-17 22:11:39 +0200 |
| commit | 96e2f165f58edbbeaca38db005fd92e4734137a5 (patch) | |
| tree | 29b01597d461003427a9845fb77bdbb241749f61 /lua | |
| parent | c63e45a190bb041e5295f563171641b487496653 (diff) | |
| download | dotfiles-96e2f165f58edbbeaca38db005fd92e4734137a5.tar.gz dotfiles-96e2f165f58edbbeaca38db005fd92e4734137a5.zip | |
Add commented out highlight group options
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/plugins/dashboard.lua | 116 |
1 files changed, 60 insertions, 56 deletions
diff --git a/lua/plugins/dashboard.lua b/lua/plugins/dashboard.lua index b288f46..46c15ec 100644 --- a/lua/plugins/dashboard.lua +++ b/lua/plugins/dashboard.lua @@ -1,4 +1,5 @@ local db = require("dashboard") + --vim.api.nvim_create_autocmd("VimEnter", { -- callback = function() -- -- disable line numbers @@ -7,69 +8,72 @@ local db = require("dashboard") -- -- always start in insert mode -- end, --}) + db.setup({ - theme = "hyper", - config = { - header = { - [[ ███╗ ██╗ ███████╗ ██████╗ ██╗ ██╗ ██╗ ███╗ ███╗]], - [[ ████╗ ██║ ██╔════╝██╔═══██╗ ██║ ██║ ██║ ████╗ ████║]], - [[ ██╔██╗ ██║ █████╗ ██║ ██║ ██║ ██║ ██║ ██╔████╔██║]], - [[ ██║╚██╗██║ ██╔══╝ ██║ ██║ ╚██╗ ██╔╝ ██║ ██║╚██╔╝██║]], - [[ ██║ ╚████║ ███████╗╚██████╔╝ ╚████╔╝ ██║ ██║ ╚═╝ ██║]], - [[ ╚═╝ ╚═══╝ ╚══════╝ ╚═════╝ ╚═══╝ ╚═╝ ╚═╝ ╚═╝]], - }, + theme = "hyper", + config = { + header = { + [[ ███╗ ██╗ ███████╗ ██████╗ ██╗ ██╗ ██╗ ███╗ ███╗]], + [[ ████╗ ██║ ██╔════╝██╔═══██╗ ██║ ██║ ██║ ████╗ ████║]], + [[ ██╔██╗ ██║ █████╗ ██║ ██║ ██║ ██║ ██║ ██╔████╔██║]], + [[ ██║╚██╗██║ ██╔══╝ ██║ ██║ ╚██╗ ██╔╝ ██║ ██║╚██╔╝██║]], + [[ ██║ ╚████║ ███████╗╚██████╔╝ ╚████╔╝ ██║ ██║ ╚═╝ ██║]], + [[ ╚═╝ ╚═══╝ ╚══════╝ ╚═════╝ ╚═══╝ ╚═╝ ╚═╝ ╚═╝]], + }, disable_move = false, - shortcut = { - { desc = " Plugins", group = "Number", action = "PackerStatus", key = "p" }, - --{ desc = " Plugins", group = "@property", action = "PackerStatus", key = "p" }, - { - desc = " Files", + shortcut = { + { desc = " Plugins", group = "Number", action = "PackerStatus", key = "p" }, + --{ desc = " Plugins", group = "@property", action = "PackerStatus", key = "p" }, + { + desc = " Files", group = "Number", - --group = "Label", - action = "Telescope find_files", - key = "f", - }, - { - desc = " Text", + --group = "Label", + action = "Telescope find_files", + key = "f", + }, + { + desc = " Text", group = "Number", - --group = "Label", - action = 'enew', - key = "t", - }, - { - desc = " Grep", + --group = "Label", + action = "enew", + key = "t", + }, + { + desc = " Grep", group = "Number", - --group = "Label", - action = "Telescope live_grep", - key = "g", - }, - { - desc = " Scheme", + --group = "Label", + action = "Telescope live_grep", + key = "g", + }, + { + desc = " Scheme", group = "Number", - --group = "Label", - action = "Telescope colorscheme", - key = "s", - }, - { - desc = ' Config', + --group = "Label", + action = "Telescope colorscheme", + key = "s", + }, + { + desc = " Config", group = "Number", - --group = "Label", - action = ':edit ~/.config.nvim/init.lua', + --group = "Label", + action = ":edit ~/.config.nvim/init.lua", key = "c", - }, - }, - }, - 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 + }, + }, + footer = { "", "Hello World!" }, + }, + hide = { + statusline = false, + tabline = false, + winbar = false, + }, }) +--highlights +---- General +--DashboardHeader DashboardFooter +---- Hyper theme +--DashboardProjectTitle DashboardProjectTitleIcon DashboardProjectIcon +--DashboardMruTitle DashboardMruIcon DashboardFiles DashboardShotCutIcon +---- Doome theme +--DashboardDesc DashboardKey DashboardIcon DashboardShotCut |
