cmp is back baby

This commit is contained in:
Zacharias-Brohn
2026-02-25 11:30:39 +01:00
parent 00c2714194
commit db2b2d364f
18 changed files with 760 additions and 200 deletions
+13
View File
@@ -0,0 +1,13 @@
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