Add MultiLine::PPI to the default profile
[p5sagit/Devel-REPL.git] / lib / Devel / REPL / Profile / Default.pm
CommitLineData
4d33251a 1package Devel::REPL::Profile::Default;
2
3use Moose;
4use namespace::clean -except => [ 'meta' ];
5
6with 'Devel::REPL::Profile';
7
8sub plugins {
91d1e9ff 9 qw(History LexEnv DDS Packages Commands MultiLine::PPI);
4d33251a 10}
11
12sub apply_profile {
13 my ($self, $repl) = @_;
14 $repl->load_plugin($_) for $self->plugins;
15}
16
171;