From 9c761d486bcf166baee5713e445da18040b6e95a Mon Sep 17 00:00:00 2001 From: McAuleyPenney <59481467+McAuleyPenney@users.noreply.github.com> Date: Mon, 24 May 2021 11:45:09 -0700 Subject: [PATCH] Update README.md (#17) add commas to Lua config example --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 4683b09..b09a9c1 100644 --- a/README.md +++ b/README.md @@ -42,10 +42,10 @@ require("presence"):setup({ -- Rich Presence text options editing_text = "Editing %s", -- Format string rendered when an editable file is loaded in the buffer - file_explorer_text = "Browsing %s" -- Format string rendered when browsing a file explorer - git_commit_text = "Committing changes" -- Format string rendered when commiting changes in git - plugin_manager_text = "Managing plugins" -- Format string rendered when managing plugins - reading_text = "Reading %s" -- Format string rendered when a read-only or unmodifiable file is loaded in the buffer + file_explorer_text = "Browsing %s", -- Format string rendered when browsing a file explorer + git_commit_text = "Committing changes", -- Format string rendered when commiting changes in git + plugin_manager_text = "Managing plugins", -- Format string rendered when managing plugins + reading_text = "Reading %s", -- Format string rendered when a read-only or unmodifiable file is loaded in the buffer workspace_text = "Working on %s", -- Workspace format string (either string or function(git_project_name: string|nil, buffer: string): string) line_number_text = "Line %s out of %s", -- Line number format string (for when enable_line_number is set to true) })