summaryrefslogtreecommitdiffstats
path: root/syntax/modules/devel-kit.vim
diff options
context:
space:
mode:
Diffstat (limited to 'syntax/modules/devel-kit.vim')
-rw-r--r--syntax/modules/devel-kit.vim10
1 files changed, 10 insertions, 0 deletions
diff --git a/syntax/modules/devel-kit.vim b/syntax/modules/devel-kit.vim
new file mode 100644
index 00000000..b097a8c3
--- /dev/null
+++ b/syntax/modules/devel-kit.vim
@@ -0,0 +1,10 @@
+if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'nginx') == -1
+
+" Nginx Development Kit <https://github.com/simpl/ngx_devel_kit>
+" The NDK is an Nginx module that is designed to extend the core functionality of the excellent Nginx webserver in a way that can be used as a basis of other Nginx modules.
+" NDK_UPSTREAM_LIST
+" This submodule provides a directive that creates a list of upstreams, with optional weighting. This list can then be used by other modules to hash over the upstreams however they choose.
+syn keyword ngxDirectiveThirdParty upstream_list
+
+
+endif