1
0
Fork 0

make nvim dashboard slimmer

This commit is contained in:
Luca Bilke 2024-04-24 21:19:03 +02:00
parent 8e3194e004
commit b450812719
3 changed files with 21 additions and 21 deletions

View File

@ -16,7 +16,7 @@ require("lazy").setup({
spec = {
{
"LazyVim/LazyVim",
import = "lazyvim.plugins"
import = "lazyvim.plugins",
},
{ import = "lazyvim.plugins.extras.coding.yanky" },
{ import = "lazyvim.plugins.extras.coding.copilot" },

View File

@ -80,30 +80,30 @@ M.banners = {
---@type Array<table>
M.buttons = {
-- {
-- action = LazyVim.telescope("files"),
-- desc = " Find File" .. string.rep(" ", 33),
-- icon = " ",
-- key = "f",
-- },
{
action = LazyVim.telescope("files"),
desc = " Find File" .. string.rep(" ", 33),
icon = "",
key = "f",
},
{
action = "ene | startinsert",
action = "enew",
desc = " New File" .. string.rep(" ", 34),
icon = "",
key = "n",
},
{
action = "Telescope live_grep",
desc = " Find Text" .. string.rep(" ", 33),
icon = "",
key = "g",
},
{
action = "TodoTelescope",
desc = " Find Todo" .. string.rep(" ", 33),
icon = "󰱒 ",
key = "t",
},
-- {
-- action = "Telescope live_grep",
-- desc = " Find Text" .. string.rep(" ", 33),
-- icon = " ",
-- key = "g",
-- },
-- {
-- action = "TodoTelescope",
-- desc = " Find Todo" .. string.rep(" ", 33),
-- icon = "󰱒 ",
-- key = "t",
-- },
{
action = 'lua require("persistence").load()',
desc = " Restore Session" .. string.rep(" ", 27),

View File

@ -29,7 +29,7 @@ return {
button.key_format = " %s"
end
math.randomseed(os.time())
local banner = "\n\n" .. banners[math.random(#banners)] .. "\n\n"
local banner = "\n" .. banners[math.random(#banners)] .. "\n"
opts.config.header = vim.split(banner, "\n")
opts.config.center = center
opts.config.footer = function()