From 998c47dd3dae0fd035b6b43fe256044aa02609d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Habi=C3=A9?= Date: Thu, 9 Nov 2023 04:10:12 +0100 Subject: [PATCH] fix commas --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 825280b..9330a47 100644 --- a/README.md +++ b/README.md @@ -48,9 +48,9 @@ The setup method accepts an optional table as an argument with the following opt width_multiplier = 4, -- How many characters one dot represents z_index = 1, -- The z-index the floating window will be on show_cursor = true, -- Show the cursor position in the minimap - screen_bounds = 'lines' -- How the visible area is displayed, "lines": lines above and below, "background": background color - window_border = 'single' -- The border style of the floating window (accepts all usual options) - relative = 'win' -- What will be the minimap be placed relative to, "win": the current window, "editor": the entire editor + screen_bounds = 'lines', -- How the visible area is displayed, "lines": lines above and below, "background": background color + window_border = 'single', -- The border style of the floating window (accepts all usual options) + relative = 'win', -- What will be the minimap be placed relative to, "win": the current window, "editor": the entire editor events = { 'TextChanged', 'InsertLeave', 'DiagnosticChanged', 'FileWritePost' } -- Events that update the code window } ```