aboutsummaryrefslogtreecommitdiff
path: root/readme.md
diff options
context:
space:
mode:
authorBruno Mello <[email protected]>2023-02-01 10:55:19 -0300
committerGitHub <[email protected]>2023-02-01 10:55:19 -0300
commit81d501920a0235a0ec27737317a63402b05a535f (patch)
tree933d1d32e62b3b2d38421268f4d94b194808f003 /readme.md
parent80462aa238f0d7be12153698be525a10741b3aa3 (diff)
docs: add missing commas in example code
Diffstat (limited to 'readme.md')
-rw-r--r--readme.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/readme.md b/readme.md
index 3caf152..46c424e 100644
--- a/readme.md
+++ b/readme.md
@@ -49,15 +49,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",
@@ -69,7 +69,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
})
```