File: sample.htrc.changeheaders.default

package info (click to toggle)
htag 0.0.24-2
  • links: PTS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 356 kB
  • sloc: perl: 1,302; makefile: 20; sh: 2
file content (30 lines) | stat: -rw-r--r-- 904 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/does/not/exist/but/fools/vim's/syntax/highlighting/perl
# Htag.pl 0.0.18 - config file
# This file is parsed as Perl by perl.
#
# My defaults when all else has failed.

# All tagfiles but "fluffybunnies"
# See comments about tagmatch/tagdir/tagfile in sample.htrc

undef $cfg{'tagfile'};
undef $cfg{'tagfiles'};
$cfg{'tagmatch'} = '^/home/huggie/.tags/(?!fluffybunnies$)';
$cfg{'tagdir'} = "~/.tags";

# No fortunes (remove vars just through paranoia really since they aren't
# defined in .htrc but they could be if someone doesn't have a separate
# default config but uses .htrc as the default)
undef $cfg{'fortune'};
undef $cfg{'fortuneval'};
undef $cfg{'fortuneargs'};

# All sigs in ~/.sigs that start with bc- or blackcat
# See comments about sigs/sigmatch/sigdir in sample.htrc

undef $cfg{'sigs'};
$cfg{'sigmatch'} = '^/home/huggie/\.sigs/(bc-.*|blackcat.*)$';
$cfg{'sigdir'} = "~/.sigs";

1;