Skip to content

Commit 27c751c

Browse files
committed
ignore spaces in vim diff
1 parent e39c56b commit 27c751c

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

ftplugin/php.vim

+4
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,7 @@ set incsearch
3131

3232
" }}}
3333

34+
let g:php_cs_fixer_level = "psr2" " which level ?
35+
let g:php_cs_fixer_config = "default" " configuration
36+
let g:php_cs_fixer_verbose = 1 " Return the output of command if 1, else an inline information.
37+

vimrc.local

+4-5
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ set modelines=5
2121

2222
" {{{ Settings
2323

24-
" Use filetype plugins, e.g. for PHP
25-
filetype plugin indent on
26-
27-
syntax on
24+
if &diff
25+
"diff mode
26+
set diffopt+=iwhite
27+
endif
2828

2929
" Show nice info in ruler
3030
set ruler
@@ -57,7 +57,6 @@ set ff=unix ffs=unix
5757
if has("unix")
5858
let s:uname = system("uname -s")
5959
if s:uname == "Darwin\n"
60-
" Do Mac stuff here
6160
set backspace=2
6261
:fixdel
6362
endif

0 commit comments

Comments
 (0)