Browse Source

SQL files had a weird indentantion...

master
Julio Biason 3 years ago
parent
commit
b285652f6d
  1. 6
      nvim/init.vim

6
nvim/init.vim

@ -131,6 +131,12 @@ au FileType sh setlocal tabstop=4 " display tabs as 4 spaces
au FileType sh setlocal shiftwidth=4 " number of spaces to use for auto-indentation
au FileType sh setlocal softtabstop=4 " when deleting characters, consider 4 spaces as a tab
" }}}
" SQL {{{
au FileType sql setlocal softtabstop=2
au FileType sql setlocal shiftwidth=2
au FileType sql setlocal tabstop=2
" }}}
" }}}
" GUI configuration {{{

Loading…
Cancel
Save