mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-03-25 03:02:21 +08:00
18 lines
382 B
VimL
18 lines
382 B
VimL
function! neoformat#formatters#nix#enabled() abort
|
|
return ['nixfmt', 'nixpkgsfmt']
|
|
endfunction
|
|
|
|
function! neoformat#formatters#nix#nixfmt() abort
|
|
return {
|
|
\ 'exe': 'nixfmt',
|
|
\ 'stdin': 1,
|
|
\ }
|
|
endfunction
|
|
|
|
function! neoformat#formatters#nix#nixpkgsfmt() abort
|
|
return {
|
|
\ 'exe': 'nixpkgs-fmt',
|
|
\ 'stdin': 1,
|
|
\ }
|
|
endfunction
|