Skip to content

Instantly share code, notes, and snippets.

@benjifisher
Created May 15, 2015 23:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save benjifisher/4532f8c55869c07f9e84 to your computer and use it in GitHub Desktop.
Save benjifisher/4532f8c55869c07f9e84 to your computer and use it in GitHub Desktop.
A bit of Vdebug configuration.
" 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