Symfony2 and Vim recommendations

I already work with Symfony2 and, of course, with vim, but in different projects. I would like to know what plugins, tips, recommendations you use in Vim to work with Symfony2?

This also applies to Twig template, themes, debugging, etc.

+6
source share
2 answers

I really don't think that Symfony2 projects are very different from any other PHP projects (at least vim-wise). The only optional plugin I use, Jinja highlights one , since Jinja's syntax is almost identical to Twig. I am also developing in Django, so I stuck with this, but there is also a Twig highlighting plugin if you want something that will be up to date with Twig.

If you want to see my vim files, they are on github , but there is nothing special in Symfony2 other than what I described above.

+2
source

We use the plugin https://github.com/docteurklein/vim-symfony . It helps a lot, and we use the htmljinja file type to highlight the templates.

+1
source

Source: https://habr.com/ru/post/914977/


All Articles