1
0
mirror of https://github.com/xlogerais/config-vim synced 2024-09-20 06:39:58 +02:00
config-vim/after/ftplugin/php/prefs.vim

24 lines
383 B
VimL
Raw Permalink Normal View History

2015-03-01 22:41:35 +01:00
" ----- [ Preferences for php ] -----
" show cursor
setlocal cursorline cursorcolumn
hi CursorLine term=none cterm=none
2015-03-01 22:41:35 +01:00
" show line numbers
setlocal number numberwidth=4
" show matching parentheses
setlocal showmatch
" indent
setlocal autoindent cindent smartindent
" tabs
setlocal tabstop=4
setlocal shiftwidth=4
" use space instead of tabs
setlocal expandtab
"set highlight