aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lua/plugins/dashboard.lua
diff options
context:
space:
mode:
authorsrdusr <trevorgray@srdusr.com>2025-08-30 00:46:23 +0200
committersrdusr <trevorgray@srdusr.com>2025-08-30 00:46:23 +0200
commit4a29c3cc90b48048961331de31c2229cfd71055f (patch)
tree6e37dd8d43e64aceda22c32e2216d329d77df3b1 /.config/nvim/lua/plugins/dashboard.lua
parent39ba69d6c1fc6e507d91570220b47e60e237b02c (diff)
downloaddotfiles-4a29c3cc90b48048961331de31c2229cfd71055f.tar.gz
dotfiles-4a29c3cc90b48048961331de31c2229cfd71055f.zip
Removed nvim subtree
Diffstat (limited to '.config/nvim/lua/plugins/dashboard.lua')
-rw-r--r--.config/nvim/lua/plugins/dashboard.lua90
1 files changed, 0 insertions, 90 deletions
diff --git a/.config/nvim/lua/plugins/dashboard.lua b/.config/nvim/lua/plugins/dashboard.lua
deleted file mode 100644
index f02242c..0000000
--- a/.config/nvim/lua/plugins/dashboard.lua
+++ /dev/null
@@ -1,90 +0,0 @@
-local db = require('dashboard')
-local messages = require('plugins.messages')
-
-function GetRandomMessage()
- -- Get a random index from the messages array
- local randomIndex = math.random(1, #messages)
- return messages[randomIndex]
-end
-
---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 = {
- mru = { limit = 10, label = '' },
- project = { limit = 10 },
- header = {
- [[ ███╗ ██╗ ███████╗ ██████╗ ██╗ ██╗ ██╗ ███╗ ███╗]],
- [[ ████╗ ██║ ██╔════╝██╔═══██╗ ██║ ██║ ██║ ████╗ ████║]],
- [[ ██╔██╗ ██║ █████╗ ██║ ██║ ██║ ██║ ██║ ██╔████╔██║]],
- [[ ██║╚██╗██║ ██╔══╝ ██║ ██║ ╚██╗ ██╔╝ ██║ ██║╚██╔╝██║]],
- [[ ██║ ╚████║ ███████╗╚██████╔╝ ╚████╔╝ ██║ ██║ ╚═╝ ██║]],
- [[ ╚═╝ ╚═══╝ ╚══════╝ ╚═════╝ ╚═══╝ ╚═╝ ╚═╝ ╚═╝]],
- },
- disable_move = false,
- 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 = 'Number',
- --group = "Label",
- action = 'enew',
- key = 't',
- },
- {
- desc = ' Grep',
- group = 'Number',
- --group = "Label",
- action = 'Telescope live_grep',
- key = 'g',
- },
- {
- desc = ' Scheme',
- group = 'Number',
- --group = "Label",
- action = 'Telescope colorscheme',
- key = 's',
- },
- {
- desc = ' Config',
- group = 'Number',
- --group = "Label",
- action = ':edit ~/.config/nvim/init.lua',
- key = 'c',
- },
- },
- footer = function()
- return { '', GetRandomMessage() }
- end,
- },
- 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