blob: 7201816f4886ba9b7661a70d567bcc5e92cb73f5 [file] [log] [blame]
Bram Moolenaar446beb42011-05-10 17:18:44 +02001" Vim syntax file
2" Language: hosts.deny, hosts.allow configuration files
3" Maintainer: Thilo Six <T.Six@gmx.de>
4" Last Change: 2011 May 01
5" Derived From: conf.vim
6" Credits: Bram Moolenaar
7"
8" This file is there to get at least a minimal highlighting.
9" A later version may be improved.
10
11
12" Quit when a (custom) syntax file was already loaded
13if exists("b:current_syntax")
14 finish
15endif
16
17" For a starter we just use conf.vim for highlighting
Bram Moolenaar89bcfda2016-08-30 23:26:57 +020018runtime! syntax/conf.vim
19unlet b:current_syntax
Bram Moolenaar446beb42011-05-10 17:18:44 +020020
21
22let b:current_syntax = "hostsaccess"
23" vim: ts=8 sw=2