nixpkgs/home/programs/neovim/configuration/ftdetect/folder_reuter.vim
Daniel Siepmann e64f6b8030
Migrate whole Neovim configuration into expected structure
That way I can load my whole configuration as a plugin.
I no longer need to explicitly set any configuration via nix as init.vim
or such things.
2022-03-22 09:38:34 +01:00

31 lines
946 B
VimL

augroup reuterFolder
autocmd!
autocmd BufEnter **/emoto2/**/Unit/** execute "call ReuterSetupPhpUnitUnit()"
autocmd BufEnter **/emoto2/**/Functional/** execute "call ReuterSetupPhpUnitFunctional()"
autocmd BufEnter **/microservices/cms/**/*.js :setlocal tabstop=2 shiftwidth=2
augroup END
" As long as we use older phpunit which does not provider proper testdox output
function! ReuterSetupPhpUnitUnit()
let g:test#php#phpunit#options = {
\ 'file': '',
\ 'nearest': '',
\}
endfunction
function! ReuterSetupPhpUnitFunctional()
" TYPO3 v8
let g:test#php#phpunit#options = {
\ 'file': '-c phpunit.functional.xml.dist --stop-on-error --stop-on-failure',
\ 'nearest': '-c phpunit.functional.xml.dist',
\}
" TYPO3 v10
let g:test#php#phpunit#options = {
\ 'file': '--stop-on-error --stop-on-failure --testdox',
\ 'nearest': '--testdox',
\}
endfunction