Last active
September 2, 2015 03:50
-
-
Save juizmill/154c227826aa294ad3ca to your computer and use it in GitHub Desktop.
my .vimrc
This file contains hidden or 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
| 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