From c15d5702dd530a40374bb6aaa13b4295d5b61af0 Mon Sep 17 00:00:00 2001 From: MarcHamamji Date: Wed, 5 Apr 2023 13:28:57 +0300 Subject: [PATCH] Format config.lua --- lua/runner/config.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lua/runner/config.lua b/lua/runner/config.lua index 3757e09..37bfcd5 100644 --- a/lua/runner/config.lua +++ b/lua/runner/config.lua @@ -2,8 +2,8 @@ local M = {} local defaults = { position = 'right', -- options: top, left, right, bottom - width = 80, -- width of window when position is left or right - height = 10, -- height of window when position is top or bottom + width = 80, -- width of window when position is left or right + height = 10, -- height of window when position is top or bottom } M.options = {} @@ -14,4 +14,4 @@ end M.setup() -return M; +return M