diff options
author | max397574 <[email protected]> | 2021-10-19 18:55:43 +0200 |
---|---|---|
committer | max397574 <[email protected]> | 2021-10-19 18:55:43 +0200 |
commit | b64a3a0e5ad0fd1006b6e30c553e9c5dac4a6058 (patch) | |
tree | f13e2f2bea32aaae0c4fe4417d92849d4a363b54 /lua/startup | |
parent | 38d8dad1ea69c0651d4345bba113a81e53647032 (diff) |
feat(themes): ✨added new section to evil
Diffstat (limited to 'lua/startup')
-rw-r--r-- | lua/startup/themes/evil_startup.lua | 21 |
1 files changed, 16 insertions, 5 deletions
diff --git a/lua/startup/themes/evil_startup.lua b/lua/startup/themes/evil_startup.lua index d7c0ecb..002201b 100644 --- a/lua/startup/themes/evil_startup.lua +++ b/lua/startup/themes/evil_startup.lua @@ -63,18 +63,29 @@ local settings = { oldfiles_amount = 10, }, + footer_2 = { + type = "text", + content = require("startup.buildingblocks.functions").packer_plugins(), + oldfiles_directory = false, + align = "center", + section = false, + title = "", + margin = 5, + highlight = "TSString", + default_color = "#FFFFFF", + command = "", + oldfiles_amount = 10, + }, + options = { mapping_keys = true, empty_lines_between_mappings = true, oldfiles_amount = 5, - padding = { - header_body = 1, - body_footer = 1, - }, + paddings = { 2, 2, 2, 2, 2, 0 }, }, colors = { background = "#1f2227", }, - parts = { "header", "body", "body_2", "footer" }, + parts = { "header", "body", "body_2", "footer", "footer_2" }, } return settings |