mirror of
https://github.com/postgres/postgres.git
synced 2025-07-18 17:42:25 +03:00
19 lines
501 B
Plaintext
19 lines
501 B
Plaintext
|
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
|
"
|
|
" These settings are appropriate for editing PostgreSQL code with vim
|
|
"
|
|
" You would copy this into your .vimrc or equivalent
|
|
"
|
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
|
|
|
:if match(getcwd(), "/pgsql") >=0 || match(getcwd(), "/postgresql") >= 0
|
|
|
|
: set cinoptions=(0
|
|
: set tabstop=4
|
|
: set shiftwidth=4
|
|
|
|
:endif
|
|
|
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|