1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-23 13:50:05 +08:00

docs(format): add readme

This commit is contained in:
Eric Wong 2024-04-16 15:25:54 +08:00
parent 78e32eb47d
commit 9e46432d18

View File

@ -0,0 +1,17 @@
# format.nvim
Asynchronous code formatting plugin based on SpaceVim job api.
## Configuration
```lua
require('format').setup({
custom_formatters = {
lua = {
exe = 'stylua',
args = {'-'},
stdin = true
},
}
})
```