diff options
author | max397574 <[email protected]> | 2021-10-18 14:33:04 +0200 |
---|---|---|
committer | max397574 <[email protected]> | 2021-10-18 14:33:04 +0200 |
commit | bbe9b45857175599a7638e378f4f63074a553119 (patch) | |
tree | 9d82342138a598d20d15a0e15e71e8b01a050acf | |
parent | 9c8b4a10c00ea47988ee7b9b40eeebcd37f090e4 (diff) |
fix(theme): 🐛use default settings in startify
-rw-r--r-- | lua/startup/themes/startify.lua | 6 |
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 |