1package Devel::REPL::Profile::Standard;
2
3our $VERSION = '1.003028';
4
5use Moose;
6use namespace::autoclean;
7
8with 'Devel::REPL::Profile';
9
10sub plugins { qw(
11  Colors
12  Completion
13  CompletionDriver::INC
14  CompletionDriver::LexEnv
15  CompletionDriver::Keywords
16  CompletionDriver::Methods
17  History
18  LexEnv
19  DDS
20  Packages
21  Commands
22  MultiLine::PPI
23  ReadLineHistory
24);}
25
26sub apply_profile {
27  my ($self, $repl) = @_;
28  $repl->load_plugin($_) for $self->plugins;
29}
30
311;
32