From bce7208644f11149d56cd6303f126c74927bce02 Mon Sep 17 00:00:00 2001 From: David Ibia Date: Thu, 8 Feb 2024 22:50:59 +0100 Subject: [PATCH] refactor(dashboard.lua): remove unnecessary empty lines refactor(dashboard.lua): update dashboard setup config to include the header option with the provided header array --- lua/absolute/after/dashboard.lua | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/lua/absolute/after/dashboard.lua b/lua/absolute/after/dashboard.lua index 514d60e..e2fe1d9 100644 --- a/lua/absolute/after/dashboard.lua +++ b/lua/absolute/after/dashboard.lua @@ -1,7 +1,5 @@ local dashboard = require("dashboard") - - local header = { [[' ⣇⣿⠘⣿⣿⣿⡿⡿⣟⣟⢟⢟⢝⠵⡝⣿⡿⢂⣼⣿⣷⣌⠩⡫⡻⣝⠹⢿⣿⣷ ']], [[' ⡆⣿⣆⠱⣝⡵⣝⢅⠙⣿⢕⢕⢕⢕⢝⣥⢒⠅⣿⣿⣿⡿⣳⣌⠪⡪⣡⢑⢝⣇ ']], @@ -19,10 +17,9 @@ local header = { [[' ⡝⡵⡕⡀⠑⠳⠿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠿⠛⢉⡠⡲⡫⡪⡪⡣ ']], } - dashboard.setup({ theme = "hyper", config = { - header = header - } + header = header, + }, })