Remove an alpha shortcut, getting too long

This commit is contained in:
Evie Litherland-Smith 2023-05-24 08:11:24 +01:00
parent d1f37562ac
commit 4cf8db8e73

View file

@ -12,20 +12,19 @@ return {
]] ]]
-- dashboard.section.header.val = vim.split(logo, "\n") dashboard.section.header.val = vim.split(logo, "\n")
dashboard.section.header.val = { -- dashboard.section.header.val = {
[[ __ ]], -- [[ __ ]],
[[ ___ ___ ___ __ __ /\_\ ___ ___ ]], -- [[ ___ ___ ___ __ __ /\_\ ___ ___ ]],
[[ / _ `\ / __`\ / __`\/\ \/\ \\/\ \ / __` __`\ ]], -- [[ / _ `\ / __`\ / __`\/\ \/\ \\/\ \ / __` __`\ ]],
[[/\ \/\ \/\ __//\ \_\ \ \ \_/ |\ \ \/\ \/\ \/\ \ ]], -- [[/\ \/\ \/\ __//\ \_\ \ \ \_/ |\ \ \/\ \/\ \/\ \ ]],
[[\ \_\ \_\ \____\ \____/\ \___/ \ \_\ \_\ \_\ \_\]], -- [[\ \_\ \_\ \____\ \____/\ \___/ \ \_\ \_\ \_\ \_\]],
[[ \/_/\/_/\/____/\/___/ \/__/ \/_/\/_/\/_/\/_/]], -- [[ \/_/\/_/\/____/\/___/ \/__/ \/_/\/_/\/_/\/_/]],
} -- }
dashboard.section.buttons.val = { dashboard.section.buttons.val = {
dashboard.button("t", "" .. " Terminal", "<cmd>ToggleTerm direction=tab <CR>"), dashboard.button("t", "" .. " Terminal", "<cmd>ToggleTerm direction=tab <CR>"),
dashboard.button("f", "" .. " Find file", "<cmd>Telescope find_files <CR>"), dashboard.button("f", "" .. " Find file", "<cmd>Telescope find_files <CR>"),
dashboard.button("r", "" .. " Recent files", "<cmd>Telescope oldfiles <CR>"), dashboard.button("r", "" .. " Recent files", "<cmd>Telescope oldfiles <CR>"),
dashboard.button("o", "" .. " Oil file browser", "<cmd>Oil <CR>"),
dashboard.button("n", "" .. " Neo-tree", "<cmd>Neotree float <CR>"), dashboard.button("n", "" .. " Neo-tree", "<cmd>Neotree float <CR>"),
dashboard.button("g", "󰊢 " .. " Git status", "<cmd>Neogit <CR>"), dashboard.button("g", "󰊢 " .. " Git status", "<cmd>Neogit <CR>"),
dashboard.button("c", "" .. " Config", "<cmd>e $MYVIMRC <CR>"), dashboard.button("c", "" .. " Config", "<cmd>e $MYVIMRC <CR>"),