refactor(dashboard.lua): remove unnecessary empty lines

refactor(dashboard.lua): update dashboard setup config to include the header option with the provided header array
This commit is contained in:
David Ibia
2024-02-08 22:50:59 +01:00
parent 0900427b05
commit bce7208644

View File

@@ -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,
},
})