mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-03-26 20:40:35 +08:00
12 lines
252 B
VimL
Vendored
12 lines
252 B
VimL
Vendored
function! neoformat#formatters#erlang#enabled() abort
|
|
return ['erlfmt']
|
|
endfunction
|
|
|
|
function! neoformat#formatters#erlang#erlfmt() abort
|
|
return {
|
|
\ 'exe': 'erlfmt',
|
|
\ 'args': ["-"],
|
|
\ 'stdin': 1
|
|
\ }
|
|
endfunction
|