mirror of
https://github.com/xlogerais/config-vim
synced 2025-06-12 18:26:55 +02:00
Use correctly the after directory
This commit is contained in:
parent
b7473e3f4a
commit
b46ca50536
23
after/ftplugin/lua/prefs.vim
Normal file
23
after/ftplugin/lua/prefs.vim
Normal file
@ -0,0 +1,23 @@
|
||||
" ----- [ Preferences for lua ] -----
|
||||
|
||||
" 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
|
Reference in New Issue
Block a user