local settings = { -- every line should be same width without escaped \ header = { type = "text", align = "center", margin = 5, content = { " /$$ ", " |__/ ", " /$$$$$$$ /$$$$$$ /$$$$$$ /$$ /$$ /$$ /$$$$$$/$$$$ ", "| $$__ $$ /$$__ $$ /$$__ $$| $$ /$$/| $$| $$_ $$_ $$", "| $$ \\ $$| $$$$$$$$| $$ \\ $$ \\ $$/$$/ | $$| $$ \\ $$ \\ $$", "| $$ | $$| $$_____/| $$ | $$ \\ $$$/ | $$| $$ | $$ | $$", "| $$ | $$| $$$$$$$| $$$$$$/ \\ $/ | $$| $$ | $$ | $$", "|__/ |__/ \\_______/ \\______/ \\_/ |__/|__/ |__/ |__/", }, highlight = "markdownH1", default_color = "#FFFFFF", command = "", }, -- name which will be displayed and command body = { type = "mapping", align = "center", margin = 5, content = { [" Find File"] = { "Telescope find_files", "ff" }, [" Find Word"] = { "Telescope live_grep", "lg" }, [" Recent Files"] = { "Telescope oldfiles", "of" }, [" File Browser"] = { "Telescope file_browser", "fb" }, [" Colorschemes"] = { "Telescope colorscheme", "cs" }, [" New File"] = { "lua require'startup'.new_file()", "nf" }, }, highlight = "TSString", default_color = "#FFFFFF", command = "", }, footer = { type = "text", align = "center", margin = 5, content = { "startup.nvim" }, highlight = "TSString", default_color = "#FFFFFF", command = "", }, options = { mapping_keys = true, empty_lines_between_mappings = true, oldfiles_amount = 5, padding = { header_body = 3, body_footer = 4, }, }, colors = { background = "#1f2227", }, parts = { "header", "body", "footer" }, } return settings