/usr/share/vile/vileperl.rc is in vile-common 9.8s-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 31 32 33 34 35 | ; $Id: vileperl.rc,v 1.8 2015/05/20 18:10:10 bod Exp $
;
; This is a sample script which shows how to initialize the perl scripts
; distributed with vile.
~if &sin $cfgopts "perl"
~if ¬ &seq $os "win32"
~if &seq $progname "xvile"
; Add vile edit server
perl "use Vileserv" ; starts automatically, stops on exit
~endif
; Add spell checker
perl "use spell"
; Add screen lock
perl "use lock"
; Add asynchronous capture
perl "use capture"
~endif
; Add directory browser
perl "use directory"
; Add recursive grep
perl "use hgrep"
perl "use dirlist"
~endif
|