From 8d2a0bdffca11d96ff15551fbaa1676526329a96 Mon Sep 17 00:00:00 2001 From: Kurenshe Nurdaulet <63652620+EpsilonKu@users.noreply.github.com> Date: Mon, 3 Apr 2023 22:02:14 +0600 Subject: [PATCH] Fix indent and space --- README.md | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index f5fcded..aa3bbb5 100644 --- a/README.md +++ b/README.md @@ -60,17 +60,20 @@ A customizable Neovim plugin to run code inside the editor ``` ## Configuration + #### `setup(options)` + Runner comes with the following defaults: ```lua - require('runner').setup({ - position = 'right', -- position of task window can be: 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 - }) + require('runner').setup({ + position = 'right', -- position of task window can be: 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 + }) ``` #### `set_handler(filetype, handler)` + Default handlers can be found [here](./lua/runner/handlers/init.lua). | Argument name | Description | Type |