diff options
author | max397574 <[email protected]> | 2021-11-09 07:30:27 +0100 |
---|---|---|
committer | max397574 <[email protected]> | 2021-11-09 07:30:27 +0100 |
commit | c140b4ff22bdac3ead99243afcd7453f9a2cd539 (patch) | |
tree | 570b9ca4579edda29c94a85390302b264ca9ba61 | |
parent | 68792dab33d490d5e3c890919f8af47f6f05cb71 (diff) |
refactor(themes): 🔄fixed buildingblocks and renamed evil
-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 = "", |