diff options
author | max397574 <[email protected]> | 2021-10-07 16:30:32 +0200 |
---|---|---|
committer | max397574 <[email protected]> | 2021-10-07 16:30:32 +0200 |
commit | a1191a3019f5195d02170a5f1f0b67fccee60e92 (patch) | |
tree | 532afd30ac0e60114eaccb9dbfc200db64d6d963 /lua/startup/themes | |
parent | 0531a7b686725089c6457d80808ab5bc195ff295 (diff) |
feat(plugin): ✨more buildingblocks and some improvements
Diffstat (limited to 'lua/startup/themes')
-rw-r--r-- | lua/startup/themes/default.lua | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/lua/startup/themes/default.lua b/lua/startup/themes/default.lua index 3c7fc07..62d1848 100644 --- a/lua/startup/themes/default.lua +++ b/lua/startup/themes/default.lua @@ -3,7 +3,7 @@ local settings = { header = { type = "text", align = "center", - padding = 5, + margin = 5, content = { " /$$ ", " |__/ ", @@ -22,7 +22,7 @@ local settings = { body = { type = "mapping", align = "center", - padding = 5, + margin = 5, content = { [" Find File"] = { "Telescope find_files", "<leader>ff" }, [" Find Word"] = { "Telescope live_grep", "<leader>lg" }, @@ -38,7 +38,7 @@ local settings = { footer = { type = "text", align = "center", - padding = 5, + margin = 5, content = { "startup.nvim" }, highlight = "TSString", default_color = "#FFFFFF", @@ -48,8 +48,10 @@ local settings = { options = { mapping_keys = true, empty_lines_between_mappings = true, - gap1 = 3, - gap2 = 4, + padding = { + header_body = 3, + body_footer = 4, + }, }, colors = { background = "#1f2227", |