aboutsummaryrefslogtreecommitdiff
path: root/lua/startup/themes
diff options
context:
space:
mode:
authormax397574 <[email protected]>2021-10-18 14:33:04 +0200
committermax397574 <[email protected]>2021-10-18 14:33:04 +0200
commitbbe9b45857175599a7638e378f4f63074a553119 (patch)
tree9d82342138a598d20d15a0e15e71e8b01a050acf /lua/startup/themes
parent9c8b4a10c00ea47988ee7b9b40eeebcd37f090e4 (diff)
fix(theme): 🐛use default settings in startify
Diffstat (limited to 'lua/startup/themes')
-rw-r--r--lua/startup/themes/startify.lua6
1 files changed, 5 insertions, 1 deletions
diff --git a/lua/startup/themes/startify.lua b/lua/startup/themes/startify.lua
index ec2612e..dac4ca3 100644
--- a/lua/startup/themes/startify.lua
+++ b/lua/startup/themes/startify.lua
@@ -1,4 +1,5 @@
-local settings = {
+local settings = require "startup.themes.default"
+settings = {
header = {
type = "text",
align = "left",
@@ -19,6 +20,9 @@ local settings = {
body_footer = 2,
},
},
+ colors = {
+ background = "#1f2227",
+ },
}
return settings