mirror of
https://github.com/kristoferssolo/runner.nvim.git
synced 2025-10-21 19:50:34 +00:00
Fix indent and space
This commit is contained in:
parent
786deb5909
commit
8d2a0bdffc
13
README.md
13
README.md
@ -60,17 +60,20 @@ A customizable Neovim plugin to run code inside the editor
|
|||||||
```
|
```
|
||||||
|
|
||||||
## Configuration
|
## Configuration
|
||||||
|
|
||||||
#### `setup(options)`
|
#### `setup(options)`
|
||||||
|
|
||||||
Runner comes with the following defaults:
|
Runner comes with the following defaults:
|
||||||
```lua
|
```lua
|
||||||
require('runner').setup({
|
require('runner').setup({
|
||||||
position = 'right', -- position of task window can be: top, left, right, bottom
|
position = 'right', -- position of task window can be: top, left, right, bottom
|
||||||
width = 80, -- width of window when position is left or right
|
width = 80, -- width of window when position is left or right
|
||||||
height = 10, -- height of window when position is top or bottom
|
height = 10, -- height of window when position is top or bottom
|
||||||
})
|
})
|
||||||
```
|
```
|
||||||
|
|
||||||
#### `set_handler(filetype, handler)`
|
#### `set_handler(filetype, handler)`
|
||||||
|
|
||||||
Default handlers can be found [here](./lua/runner/handlers/init.lua).
|
Default handlers can be found [here](./lua/runner/handlers/init.lua).
|
||||||
|
|
||||||
| Argument name | Description | Type |
|
| Argument name | Description | Type |
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user