]> the.earth.li Git - htag.git/blob - docs/sample-config/sample.htrc.changeheaders.default
Import Upstream version 0.0.19
[htag.git] / docs / sample-config / sample.htrc.changeheaders.default
1 #!/does/not/exist/but/fools/vim's/syntax/highlighting/perl
2 # Htag.pl 0.0.18 - config file
3 # This file is parsed as Perl by perl.
4 #
5 # My defaults when all else has failed.
6
7 # All tagfiles but "fluffybunnies"
8 # See comments about tagmatch/tagdir/tagfile in sample.htrc
9
10 undef $cfg{'tagfile'};
11 undef $cfg{'tagfiles'};
12 $cfg{'tagmatch'} = '^/home/huggie/.tags/(?!fluffybunnies$)';
13 $cfg{'tagdir'} = "~/.tags";
14
15 # No fortunes (remove vars just through paranoia really since they aren't
16 # defined in .htrc but they could be if someone doesn't have a separate
17 # default config but uses .htrc as the default)
18 undef $cfg{'fortune'};
19 undef $cfg{'fortuneval'};
20 undef $cfg{'fortuneargs'};
21
22 # All sigs in ~/.sigs that start with bc- or blackcat
23 # See comments about sigs/sigmatch/sigdir in sample.htrc
24
25 undef $cfg{'sigs'};
26 $cfg{'sigmatch'} = '^/home/huggie/\.sigs/(bc-.*|blackcat.*)$';
27 $cfg{'sigdir'} = "~/.sigs";
28
29 1;
30