diff --git a/bundle/format.nvim/README.md b/bundle/format.nvim/README.md new file mode 100644 index 000000000..6b83032b5 --- /dev/null +++ b/bundle/format.nvim/README.md @@ -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 + }, + } +}) +```