forked from EvanDotPro/vim-configuration
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.local.vim
More file actions
30 lines (21 loc) · 1.04 KB
/
config.local.vim
File metadata and controls
30 lines (21 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
" This is the path that you want NERDTree to initially display
let g:startDir = '~/Sites/Playerize/surveys'
let mapleader=","
let g:phpqa_messdetectory_cnd='~/usr/local/bin/phpmd'
let g:airline_powerline_fonts = 1
let g:phpqa_codesniffer_args = "--standard=PSR2"
let g:phpqa_messdetector_ruleset = "cleancode,codesize,design,controversial,unusedcode"
let g:neocomplete#enable_at_startup = 1
autocmd FileType php setlocal omnifunc=phpcomplete_extended#CompletePHP
let g:SuperTabDefaultCompletionType = "<c-x><c-o>"
let g:phpcomplete_index_composer_command = "composer"
let g:vdebug_options = {
\ 'path_maps': {
\ '/home/vagrant/perk-tv-api': '/Users/thomasveilleux/Sites/Github/perk-tv-api',
\ '/home/vagrant/api': '/Users/thomasveilleux/Sites/Github/api',
\ '/srv/prod/kitn' : '/Users/thomasveilleux/Sites/Playerize/superrewards',
\ '/srv/prod/kitn/www/live/srwallfront' : '/Users/thomasveilleux/Sites/Playerize/sr-wallfront',
\ '/home/vagrant/surveys': '/Users/thomasveilleux/Sites/Playerize/surveys'
\ },
\ }
let g:gist_post_private = 1