http://www.perlmonks.org?node_id=166858


in reply to Vim configs (slightly OT)

set smartindent set tabstop=8 set shiftwidth=4 set softtabstop=4 let perl_want_scope_in_variables=1 let perl_extended_vars=1 let perl_include_pod=1 colorscheme elflord syntax on
The elflord colorscheme has bright colors, so it is easy to read, the perl_* lets are very imporant if you're serious about Perl programming:
want_scope_in_variables: give package names an other color
extended_vars: parse things like $foo{ split //, $var } for better clarity
include_pod: recognise pod and use special colors for it.

Note: It's not perl_include_POD, as all documentation says. A lot of people read the documentation, and don't have this working, so use lowercase "pod".

- Yes, I reinvent wheels.
- Spam: Visit eurotraQ.

Replies are listed 'Best First'.
Re^2: Vim configs (slightly OT)
by Aristotle (Chancellor) on May 18, 2002 at 22:48 UTC
    Just where do those mysterious perl_* come from? I found nothing on them anywhere in the docs?

    Makeshifts last the longest.

      Just where do those mysterious perl_* come from? I found nothing on them anywhere in the docs?

      :help perl-syntax

      - Yes, I reinvent wheels.
      - Spam: Visit eurotraQ.