1
0
mirror of https://github.com/xlogerais/config-vim synced 2024-09-19 22:29:58 +02:00
config-vim/ftplugin/php/prefs.vim
Xavier Logerais (Numericable - Ingénierie Système) b4811daa9d Modified ftplugin directory structure
2015-03-02 14:32:35 +01:00

23 lines
348 B
VimL

" ----- [ Preferences for php ] -----
" show cursor
setlocal cursorline cursorcolumn
" 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