diff options
author | max397574 <[email protected]> | 2021-10-20 20:16:55 +0200 |
---|---|---|
committer | max397574 <[email protected]> | 2021-10-20 20:16:55 +0200 |
commit | 99f1a89aea79d5012dd05f4730b21297550b57df (patch) | |
tree | e1b51c432b8dbfbdad84e1ed084f2d155bc7f164 /lua/startup/themes/evil_startup.lua | |
parent | d568672b40d05dbe515cb74459986bdf5d48e086 (diff) |
fix(themes): 🐛use fold instead of section and some new settings
Diffstat (limited to 'lua/startup/themes/evil_startup.lua')
-rw-r--r-- | lua/startup/themes/evil_startup.lua | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/lua/startup/themes/evil_startup.lua b/lua/startup/themes/evil_startup.lua index 002201b..9bf4879 100644 --- a/lua/startup/themes/evil_startup.lua +++ b/lua/startup/themes/evil_startup.lua @@ -21,7 +21,7 @@ local settings = { body = { type = "mapping", align = "center", - section = true, + fold = true, title = "Basic Commands", margin = 5, content = { @@ -40,20 +40,20 @@ local settings = { type = "oldfiles", oldfiles_directory = true, align = "center", - section = true, + fold = true, title = "Oldfiles of Directory", margin = 5, content = {}, highlight = "TSString", default_color = "#FFFFFF", command = "", - oldfiles_amount = 10, + oldfiles_amount = 5, }, footer = { type = "oldfiles", oldfiles_directory = false, align = "center", - section = true, + fold = true, title = "Oldfiles", margin = 5, content = { "startup.nvim" }, @@ -68,7 +68,7 @@ local settings = { content = require("startup.buildingblocks.functions").packer_plugins(), oldfiles_directory = false, align = "center", - section = false, + fold = false, title = "", margin = 5, highlight = "TSString", @@ -80,8 +80,7 @@ local settings = { options = { mapping_keys = true, empty_lines_between_mappings = true, - oldfiles_amount = 5, - paddings = { 2, 2, 2, 2, 2, 0 }, + paddings = { 1, 1, 1, 1, 1 }, }, colors = { background = "#1f2227", |