1
0
mirror of https://github.com/xlogerais/config-vim synced 2025-06-13 10:46:56 +02:00

Modified ftplugin directory structure

This commit is contained in:
Xavier Logerais (Numericable - Ingénierie Système)
2015-03-02 14:32:35 +01:00
parent 5d831bbb7b
commit b4811daa9d
3 changed files with 0 additions and 0 deletions

22
ftplugin/php/prefs.vim Normal file
View File

@ -0,0 +1,22 @@
" ----- [ 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