From cc5ca2e8c8fa3cf2e60321fdb0cb4ddb66551ff2 Mon Sep 17 00:00:00 2001 From: bh Date: Wed, 12 Nov 2025 23:57:20 +0800 Subject: Initial Commit --- lua/config/.bak/dashboard.lua.bak | 109 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 109 insertions(+) create mode 100644 lua/config/.bak/dashboard.lua.bak (limited to 'lua/config/.bak/dashboard.lua.bak') diff --git a/lua/config/.bak/dashboard.lua.bak b/lua/config/.bak/dashboard.lua.bak new file mode 100644 index 0000000..d5c81c0 --- /dev/null +++ b/lua/config/.bak/dashboard.lua.bak @@ -0,0 +1,109 @@ +-- 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!" }, + }, +} + -- cgit v1.2.3