1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-03 05:20:04 +08:00
SpaceVim/bundle/format.nvim/README.md

18 lines
245 B
Markdown
Raw Normal View History

2024-04-16 15:25:54 +08:00
# format.nvim
Asynchronous code formatting plugin based on SpaceVim job api.
## Configuration
```lua
require('format').setup({
custom_formatters = {
lua = {
exe = 'stylua',
args = {'-'},
stdin = true
},
}
})
```