xref: /vim-8.2.3635/runtime/indent/nginx.vim (revision 6e649224)
1" Vim indent file
2" Language: nginx.conf
3" Maintainer: Chris Aumann <[email protected]>
4" Last Change: Apr 15, 2017
5
6if exists("b:did_indent")
7    finish
8endif
9let b:did_indent = 1
10
11setlocal indentexpr=
12
13" cindent actually works for nginx' simple file structure
14setlocal cindent
15
16" Just make sure that the comments are not reset as defs would be.
17setlocal cinkeys-=0#
18