Created
May 15, 2015 23:14
-
-
Save benjifisher/4532f8c55869c07f9e84 to your computer and use it in GitHub Desktop.
A bit of Vdebug configuration.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Configuration for the Vdebug interface to Xdebug (and DBGp) debugger. | |
" See :help Vdebug and https://github.com/joonty/vdebug. | |
if !exists('g:vdebug_options') | |
let g:vdebug_options = {} | |
endif | |
if !exists('g:vdebug_options.path_maps') | |
let g:vdebug_options.path_maps = {} | |
endif | |
let g:vdebug_options['path_maps']['/var/www/drupal'] = '/Users/bfisher/Sites/drupal-7.32/' | |
" let g:vdebug_options['server'] = '192.168.88.88' | |
let g:vdebug_options['server'] = '192.168.88.1' | |
let g:vdebug_options['port'] = '9001' | |
let g:vdebug_options['debug_file'] = '/tmp/vdebug.log' | |
let g:vdebug_options['debug_file_level'] = 2 | |
" vim:ft=vim |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment