mirror of
https://github.com/sheerun/vim-polyglot.git
synced 2025-11-10 12:33:51 -05:00
21 lines
937 B
VimL
21 lines
937 B
VimL
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'nginx') == -1
|
|
|
|
" Fancy Indexes Module <https://github.com/aperezdc/ngx-fancyindex>
|
|
" Like the built-in autoindex module, but fancier.
|
|
syn keyword ngxDirectiveThirdParty fancyindex
|
|
syn keyword ngxDirectiveThirdParty fancyindex_default_sort
|
|
syn keyword ngxDirectiveThirdParty fancyindex_directories_first
|
|
syn keyword ngxDirectiveThirdParty fancyindex_css_href
|
|
syn keyword ngxDirectiveThirdParty fancyindex_exact_size
|
|
syn keyword ngxDirectiveThirdParty fancyindex_name_length
|
|
syn keyword ngxDirectiveThirdParty fancyindex_footer
|
|
syn keyword ngxDirectiveThirdParty fancyindex_header
|
|
syn keyword ngxDirectiveThirdParty fancyindex_show_path
|
|
syn keyword ngxDirectiveThirdParty fancyindex_ignore
|
|
syn keyword ngxDirectiveThirdParty fancyindex_hide_symlinks
|
|
syn keyword ngxDirectiveThirdParty fancyindex_localtime
|
|
syn keyword ngxDirectiveThirdParty fancyindex_time_format
|
|
|
|
|
|
endif
|