diff --git a/home/programs/neovim/configuration/ftdetect/folder_reuter.vim b/home/programs/neovim/configuration/ftdetect/folder_reuter.vim index d1ba88c..bbba8cb 100644 --- a/home/programs/neovim/configuration/ftdetect/folder_reuter.vim +++ b/home/programs/neovim/configuration/ftdetect/folder_reuter.vim @@ -2,13 +2,15 @@ augroup reuterFolder autocmd! autocmd BufEnter **/microservices/cms/**/*.js :setlocal tabstop=2 shiftwidth=2 - autocmd BufEnter **/reuter/**/Unit/** execute "call ReuterSetupPhpUnitUnit()" + autocmd BufEnter **/reuter/**/*.yaml :setlocal tabstop=4 shiftwidth=4 + autocmd BufEnter **/reuter/**/*.yml :setlocal tabstop=4 shiftwidth=4 + + " autocmd BufEnter **/reuter/**/Unit/** execute "call ReuterSetupPhpUnitUnit()" autocmd BufEnter **/reuter/**/.git/COMMIT_EDITMSG let b:ale_gitcommit_gitlint_options = '-c general.contrib=contrib-title-conventional-commits' augroup END -function! ReuterSetupPhpUnitFunctional() - " let g:test#php#phpunit#options = { - " \ 'file': '--stop-on-error --stop-on-failure', - " \} - -endfunction +" function! ReuterSetupPhpUnitFunctional() +" let g:test#php#phpunit#options = { +" \ 'file': '--stop-on-error --stop-on-failure', +" \} +" endfunction