Skip to content

Commit

Permalink
fix(readme): missing commas in lua config
Browse files Browse the repository at this point in the history
fixes #122
  • Loading branch information
OscarCreator committed Mar 27, 2024
1 parent 1b8930f commit 765d3b9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,13 +80,14 @@ ignorefile_paths = ["~/.gitignore", ".gitignore"]
Global configuration settings with the default values

```lua
---@type RsyncConfig
{
-- triggers `RsyncUp` when fugitive thinks something might have changed in the repo.
fugitive_sync = false,
-- triggers `RsyncUp` when you save a file.
sync_on_save = true
sync_on_save = true,
-- the path to the project configuration
project_config_path = ".nvim/rsync.toml"
project_config_path = ".nvim/rsync.toml",
-- called when the rsync command exits, provides the exit code and the used command
on_exit = function(code, command)
end,
Expand Down

0 comments on commit 765d3b9

Please sign in to comment.