1
0
mirror of https://github.com/xlogerais/config-vim synced 2024-11-10 00:21:41 +01:00
config-vim/ftplugin/ruby/prefs.vim
Xavier Logerais (Numericable - Ingénierie Système) b7473e3f4a Modified preferences for cursorline in ftplugin/*
2015-03-02 18:48:39 +01:00

25 lines
385 B
VimL

" ----- [ Preferences for ruby ] -----
" show cursor
setlocal cursorline cursorcolumn
hi CursorLine term=none cterm=none
" show line numbers
setlocal number numberwidth=4
" show matching parentheses
setlocal showmatch
" indent
setlocal autoindent cindent smartindent
" tabs
setlocal tabstop=2
setlocal shiftwidth=2
" use space instead of tabs
setlocal expandtab
"set highlight