diff options
author | max397574 <[email protected]> | 2023-02-15 13:15:11 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2023-02-15 13:15:11 +0100 |
commit | 2063d7946145cd46f5d77ace9002c2c8c90ae19b (patch) | |
tree | ed6b860639f29e5e94bbd0294ef5de72b5f839d2 /readme.md | |
parent | 15fa5cdcce8dc06f418cfcd5de49d57a1fe7e5da (diff) | |
parent | 81d501920a0235a0ec27737317a63402b05a535f (diff) |
Merge pull request #35 from brunobmello25/master
docs: add missing commas in example code
Diffstat (limited to 'readme.md')
-rw-r--r-- | readme.md | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -45,15 +45,15 @@ require"startup".setup({ -- if < 0 fraction of screen width -- if > 0 numbers of column - cursor_column = 0.5 + cursor_column = 0.5, after = function() -- function that gets executed at the end <lua commands> - end + end, empty_lines_between_mappings = true, -- add an empty line between mapping/commands - disable_statuslines = true -- disable status-, buffer- and tablines + disable_statuslines = true, -- disable status-, buffer- and tablines paddings = {1,2}, -- amount of empty lines before each section (must be equal to amount of sections) - } + }, mappings = { execute_command = "<CR>", open_file = "o", @@ -65,7 +65,7 @@ require"startup".setup({ background = "#1f2227", folded_section = "#56b6c2", -- the color of folded sections -- this can also be changed with the `StartupFoldedSection` highlight group - } + }, parts = {"section_1", "section_2"} -- all sections in order }) ``` |