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

23 lines
348 B
VimL

" ----- [ Preferences for lua ] -----
" 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=2
setlocal shiftwidth=2
" use space instead of tabs
setlocal expandtab
"set highlight