diff options
author | max397574 <[email protected]> | 2021-12-08 14:27:15 +0100 |
---|---|---|
committer | max397574 <[email protected]> | 2021-12-08 14:27:15 +0100 |
commit | 94eaa257464fbe952440ab8717b27f77365c46a8 (patch) | |
tree | 005e329707226508b58904351b15a7e360cf182c | |
parent | 835ac05705855dc4bfb08e6b7cf4a9dc28f342e9 (diff) |
feat(themes): empty for default values
-rw-r--r-- | lua/startup/themes/empty.lua | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/lua/startup/themes/empty.lua b/lua/startup/themes/empty.lua new file mode 100644 index 0000000..9ed8065 --- /dev/null +++ b/lua/startup/themes/empty.lua @@ -0,0 +1,22 @@ +local settings = { + options = { + mapping_keys = true, + cursor_column = 0.5, + empty_lines_between_mappings = true, + disable_statuslines = false, + paddings = { 1, 3, 3, 0 }, + }, + mappings = { + execute_command = "<CR>", + open_file = "o", + open_file_split = "<c-o>", + open_section = "<TAB>", + open_help = "?", + }, + colors = { + background = "#1f2227", + folded_section = "#56b6c2", + }, + parts = {}, +} +return settings |