diff options
Diffstat (limited to 'lua/startup/themes')
-rw-r--r-- | lua/startup/themes/evil.lua (renamed from lua/startup/themes/evil_startup.lua) | 6 | ||||
-rw-r--r-- | lua/startup/themes/startify.lua | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/lua/startup/themes/evil_startup.lua b/lua/startup/themes/evil.lua index 68bb80b..a211b71 100644 --- a/lua/startup/themes/evil_startup.lua +++ b/lua/startup/themes/evil.lua @@ -6,7 +6,7 @@ local settings = { fold_section = false, title = "Header", margin = 5, - content = require("startup.buildingblocks.headers").hydra(), + content = require("startup.headers").hydra(), highlight = "Statement", default_color = "", command = "", @@ -19,7 +19,7 @@ local settings = { fold_section = false, title = "Quote", margin = 5, - content = require("startup.buildingblocks.functions").quote(), + content = require("startup.functions").quote(), highlight = "Constant", default_color = "", command = "", @@ -92,7 +92,7 @@ local settings = { footer_2 = { type = "text", - content = require("startup.buildingblocks.functions").packer_plugins(), + content = require("startup.functions").packer_plugins(), oldfiles_directory = false, align = "center", fold_section = false, diff --git a/lua/startup/themes/startify.lua b/lua/startup/themes/startify.lua index 3744a51..bd51d59 100644 --- a/lua/startup/themes/startify.lua +++ b/lua/startup/themes/startify.lua @@ -7,7 +7,7 @@ local settings = { fold_section = false, title = "Header", margin = 5, - content = require("startup.buildingblocks.headers").default_header(), + content = require("startup.headers").default_header(), highlight = "Statement", default_color = "", command = "", @@ -47,7 +47,7 @@ local settings = { fold_section = false, title = "Quote", margin = 5, - content = require("startup.buildingblocks.functions").quote(), + content = require("startup.functions").quote(), highlight = "String", default_color = "", command = "", |