/vimrc-php

Vim settings for php environments (also frameworks)

Primary LanguageVim script

VIMRC-PHP

Vim settings for php environments (also frameworks). I switched to neovim, so some plugin might not work on Vim.

To install just clone this repo from your .vim folder and change the vimrc file to: source ~/.vim/vimrc-php/vimrc

There is also an install.sh file where all the extra libraries needed to complete the settings are listed, and their commands to do it.

The install.sh should set up everything, but I suggest you to execute each command separatelly on your own.

This vimrc requires vim-plug, so better to install all the extras in install.sh before launching vim.

I'm used to start vim from the project root directory.

BEFORE GOING ON WITH THE install.sh:

Donwload a patched font of your like for coding, this is mine and place it at the $HOME dir

On your Konsole go to settings-> Edit current profile -> Appearance-> Select Font and select your new font

For debugging capabilities, Vdebug it's used, see github for installation/usage instructions. Xdebug installation: https://xdebug.org/wizard.php

Add this to bashrc: export XDEBUG_CONFIG="idekey=xdebug"

And this to php.ini:

[xdebug] zend_extension=xdebug.so xdebug.default_enable=1 xdebug.remote_enable=1 xdebug.remote_autostart=0 xdebug.remote_port=9001 xdebug.remote_handler=dbgp xdebug.remote_host=localhost

Optionally install these syntax checkers:

composer global require friendsofphp/php-cs-fixer

composer global require "phpmd/phpmd=*"

composer global require "squizlabs/php_codesniffer=*"

For code intellisense, coc it's used, and some extensions:

  • Marketplace, browse all the available coc extensions, in nvim run :CocInstall coc-marketplace
  • Intelephense, install the coc-extension, in your nvim run :CocInstall coc-phpls
  • These others might be interesting to install:
  • coc-sql
  • coc-snippets
  • coc-yaml
  • coc-vetur
  • coc-json
  • coc-phpactor
  • coc-phpactor
  • coc-tabnine