local settings = { -- every line should be same width without escaped \ header = { type = "text", oldfiles_directory = false, align = "center", fold_section = false, title = "Header", margin = 5, content = { " /$$ ", " |__/ ", " /$$$$$$$ /$$$$$$ /$$$$$$ /$$ /$$ /$$ /$$$$$$/$$$$ ", "| $$__ $$ /$$__ $$ /$$__ $$| $$ /$$/| $$| $$_ $$_ $$", "| $$ \\ $$| $$$$$$$$| $$ \\ $$ \\ $$/$$/ | $$| $$ \\ $$ \\ $$", "| $$ | $$| $$_____/| $$ | $$ \\ $$$/ | $$| $$ | $$ | $$", "| $$ | $$| $$$$$$$| $$$$$$/ \\ $/ | $$| $$ | $$ | $$", "|__/ |__/ \\_______/ \\______/ \\_/ |__/|__/ |__/ |__/", }, highlight = "Statement", default_color = "", command = "", oldfiles_amount = 0, }, -- name which will be displayed and command body = { type = "mapping", oldfiles_directory = false, align = "center", fold_section = false, title = "Basic Commands", 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 = "String", default_color = "", command = "", oldfiles_amount = 0, }, footer = { type = "text", oldfiles_directory = false, align = "center", fold_section = false, title = "Footer", margin = 5, content = { "startup.nvim" }, highlight = "Number", default_color = "", command = "", oldfi = 0, }, options = { mapping_keys = true, empty_lines_between_mappings = true, paddings = { 1, 3, 3, 0 }, }, mappings = { execute_command = "", open_file = "o", open_file_split = "", open_section = "", open_help = "?", }, colors = { background = "#1f2227", }, parts = { "header", "body", "footer" }, } return settings