Skip to content

Instantly share code, notes, and snippets.

@juizmill
Last active September 2, 2015 03:50
Show Gist options
  • Select an option

  • Save juizmill/154c227826aa294ad3ca to your computer and use it in GitHub Desktop.

Select an option

Save juizmill/154c227826aa294ad3ca to your computer and use it in GitHub Desktop.
my .vimrc
set nocompatible
"filetype off
filetype plugin indent on
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'scrooloose/nerdtree'
Plugin 'Xuyuanp/nerdtree-git-plugin'
call vundle#end()
filetype plugin indent on
"########## Bundles ############
Bundle 'joonty/vim-phpqa.git'
"Custom
syntax on
:set number
:set ruler
:set mouse=a
:set tabstop=4 shiftwidth=4 expandtab
let mapleader="@"
let g:phpqa_codesniffer_args = "--standard=psr2"
let g:phpqa_messdetector_ruleset = "/home/juizmill/phpmd.xml"
let g:phpqa_codecoverage_file = "/home/juizmill/clover.xml"
let g:phpqa_messdetector_autorun = 1
let g:phpqa_codesniffer_autorun = 1
let g:phpqa_codecoverage_autorun = 1
let g:phpqa_open_loc = 1
let g:phpqa_codecoverage_showcovered = 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment