diff options
author | max397574 <[email protected]> | 2021-10-29 19:48:25 +0200 |
---|---|---|
committer | max397574 <[email protected]> | 2021-10-29 19:48:25 +0200 |
commit | 843bd553ecb47f3a1fc09df2d32d03022ea83bf0 (patch) | |
tree | ae96a987c7a104038b523aa50a3995e830e712b0 /lua/startup/themes/evil_startup.lua | |
parent | 00b50c6e6e230741b9eaff89fbee5356bce8927d (diff) |
feat(themes): ✨added all settings
Diffstat (limited to 'lua/startup/themes/evil_startup.lua')
-rw-r--r-- | lua/startup/themes/evil_startup.lua | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/lua/startup/themes/evil_startup.lua b/lua/startup/themes/evil_startup.lua index 92b7936..1c5878b 100644 --- a/lua/startup/themes/evil_startup.lua +++ b/lua/startup/themes/evil_startup.lua @@ -3,20 +3,27 @@ local settings = { header = { type = "text", align = "center", + fold_section = false, + title = "Header", margin = 5, content = require("startup.buildingblocks.headers").hydra(), - highlight = "markdownH1", - default_color = "#FFFFFF", + highlight = "Statement", + default_color = "", command = "", + oldfiles_amount = 0, }, header_2 = { type = "text", + oldfiles_directory = false, align = "center", + fold_section = false, + title = "Quote", margin = 5, content = require("startup.buildingblocks.functions").quote(), highlight = "Constant", default_color = "", command = "", + oldfiles_amount = 0, }, -- name which will be displayed and command body = { @@ -33,9 +40,10 @@ local settings = { [" Colorschemes"] = { "Telescope colorscheme", "<leader>cs" }, [" New File"] = { "lua require'startup'.new_file()", "<leader>nf" }, }, - highlight = "TSString", - default_color = "#FFFFFF", + highlight = "String", + default_color = "", command = "", + oldfiles_amount = 0, }, body_2 = { type = "oldfiles", |