mirror of
https://git.aramjonghu.nl/AramJonghu/nvim.git
synced 2026-06-07 00:48:24 +02:00
15 lines
369 B
VimL
15 lines
369 B
VimL
function! neoformat#formatters#qml#enabled() abort
|
|
return ['qmlformat']
|
|
endfunction
|
|
|
|
function! neoformat#formatters#qml#qmlformat() abort
|
|
return {
|
|
\ 'exe': '/usr/lib/qt6/bin/qmlformat',
|
|
\ 'args': ['-t', '-n', '--objects-spacing', '--functions-spacing', '-i'],
|
|
\ 'replace': 1,
|
|
\ 'stderr': 1,
|
|
\ 'stdin': 0
|
|
\ }
|
|
endfunction
|
|
|