Fix indent and space

This commit is contained in:
Kurenshe Nurdaulet 2023-04-03 22:02:14 +06:00 committed by GitHub
parent 786deb5909
commit 8d2a0bdffc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 |