diff --git a/nvim/init.vim b/nvim/init.vim index fe77a73..c9f704d 100644 --- a/nvim/init.vim +++ b/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 {{{