summaryrefslogtreecommitdiff
path: root/lua/config/.bak/dashboard.lua.bak
diff options
context:
space:
mode:
authorbh <qn+git@excalibur.computer>2026-03-15 15:19:31 +0800
committerbh <qn+git@excalibur.computer>2026-03-15 15:19:31 +0800
commit069fc94ee079b92146ba99dffa2e4d704ae4304c (patch)
tree62f42b50229797a534cd797cc664dfe76493d464 /lua/config/.bak/dashboard.lua.bak
parentbcd354bd60258e591f893c45ed621f3c62f64c90 (diff)
Remove .bak folders
Diffstat (limited to 'lua/config/.bak/dashboard.lua.bak')
-rw-r--r--lua/config/.bak/dashboard.lua.bak109
1 files changed, 0 insertions, 109 deletions
diff --git a/lua/config/.bak/dashboard.lua.bak b/lua/config/.bak/dashboard.lua.bak
deleted file mode 100644
index d5c81c0..0000000
--- a/lua/config/.bak/dashboard.lua.bak
+++ /dev/null
@@ -1,109 +0,0 @@
--- local home = os.getenv('HOME')
--- local db = require('dashboard')
--- db.default_banner =
--- {
--- '',
--- '',
--- '',
--- '██████╗ ██╗ ██╗ ███╗ ██╗██╗ ██╗██╗███╗ ███╗',
--- '██╔══██╗██║ ██║ ████╗ ██║██║ ██║██║████╗ ████║',
--- '██████╔╝███████║█████╗██╔██╗ ██║██║ ██║██║██╔████╔██║',
--- '██╔══██╗██╔══██║╚════╝██║╚██╗██║╚██╗ ██╔╝██║██║╚██╔╝██║',
--- '██████╔╝██║ ██║ ██║ ╚████║ ╚████╔╝ ██║██║ ╚═╝ ██║',
--- '╚═════╝ ╚═╝ ╚═╝ ╚═╝ ╚═══╝ ╚═══╝ ╚═╝╚═╝ ╚═ ',
--- '',
--- ' [TIP: To exit Vim, use a sledgehammer.] ',
--- '',
---
---
--- }
--- db.preview_file_height = 11
--- db.preview_file_width = 70
--- db.custom_center =
--- {
--- { icon = ' ',
--- desc = 'Recently Opened Files ',
--- action = 'Telescope oldfiles',
--- shortcut = 'SPC f h' },
--- { icon = ' ',
--- desc = 'New File ',
--- action = ':tabnew',
--- shortcut = 'SPC f n' },
--- { icon = ' ',
--- desc = 'Find File ',
--- action = 'Telescope find_files find_command=rg,--hidden,--files',
--- shortcut = 'SPC f f' },
--- { icon = ' ',
--- desc = 'File Browser ',
--- action = 'Telescope file_browser',
--- shortcut = 'SPC f b' },
--- { icon = ' ',
--- desc = 'Find Word ',
--- action = 'Telescope live_grep',
--- shortcut = 'SPC f w' },
--- { icon = ' ',
--- desc = 'View Harpoon Marks ',
--- action = 'Telescope harpoon marks',
--- shortcut = 'SPC f r' },
--- { icon = '⚒ ',
--- desc = 'Use A Sledgehammer ',
--- action = 'qa',
--- shortcut = 'SPC w q' },
--- }
-
-local db = require("dashboard")
-db.setup {
- theme = "hyper",
- config = {
- header = {
- " ███╗ ██╗███████╗ ██████╗ ██╗ ██╗██╗███╗ ███╗ ",
- " ████╗ ██║██╔════╝██╔═══██╗██║ ██║██║████╗ ████║ ",
- " ██╔██╗ ██║█████╗ ██║ ██║██║ ██║██║██╔████╔██║ ",
- " ██║╚██╗██║██╔══╝ ██║ ██║╚██╗ ██╔╝██║██║╚██╔╝██║ ",
- " ██║ ╚████║███████╗╚██████╔╝ ╚████╔╝ ██║██║ ╚═╝ ██║ ",
- " ╚═╝ ╚═══╝╚══════╝ ╚═════╝ ╚═══╝ ╚═╝╚═╝ ╚═╝ "
-
- },
--- center = {
--- { icon = " ", desc = "Find File", action = "Telescope find_files", shortcut = "f" },
--- { icon = " ", desc = "Recent Files", action = "Telescope oldfiles", shortcut = "r" },
--- { icon = " ", desc = "New File", action = "enew", shortcut = "n" },
--- { icon = "󰓢 ", desc = "Open Config", action = "edit ~/.config/nvim/init.lua", shortcut = "c" },
--- { icon = "󰗼 ", desc = "Quit", action = "qa", shortcut = "q" },
--- },
- center =
- {
- { icon = ' ',
- desc = 'Recently Opened Files ',
- action = 'Telescope oldfiles',
- shortcut = 'SPC f h' },
- { icon = ' ',
- desc = 'New File ',
- action = ':tabnew',
- shortcut = 'SPC f n' },
- { icon = ' ',
- desc = 'Find File ',
- action = 'Telescope find_files find_command=rg,--hidden,--files',
- shortcut = 'SPC f f' },
- { icon = ' ',
- desc = 'File Browser ',
- action = 'Telescope file_browser',
- shortcut = 'SPC f b' },
- { icon = ' ',
- desc = 'Find Word ',
- action = 'Telescope live_grep',
- shortcut = 'SPC f w' },
- { icon = ' ',
- desc = 'View Harpoon Marks ',
- action = 'Telescope harpoon marks',
- shortcut = 'SPC f r' },
- { icon = '⚒ ',
- desc = 'Use A Sledgehammer ',
- action = 'qa',
- shortcut = 'SPC w q' },
- },
-
- footer = { "Have a productive day!" },
- },
-}
-