diff options
Diffstat (limited to 'ftdetect')
-rw-r--r-- | ftdetect/polyglot.vim | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ftdetect/polyglot.vim b/ftdetect/polyglot.vim index b00f0f8b..4991170d 100644 --- a/ftdetect/polyglot.vim +++ b/ftdetect/polyglot.vim @@ -539,11 +539,12 @@ augroup filetypedetect augroup END augroup filetypedetect -" nginx:othree/nginx-contrib-vim +" nginx:chr4/nginx.vim au BufRead,BufNewFile *.nginx set ft=nginx +au BufRead,BufNewFile nginx*.conf set ft=nginx +au BufRead,BufNewFile *nginx.conf set ft=nginx au BufRead,BufNewFile */etc/nginx/* set ft=nginx au BufRead,BufNewFile */usr/local/nginx/conf/* set ft=nginx -au BufRead,BufNewFile nginx.conf set ft=nginx augroup END augroup filetypedetect |