Move to Moo for fast bootstrapping.
[p5sagit/Devel-REPL.git] / lib / Devel / REPL / Profile / Default.pm
index 672f367..b9ec1b1 100644 (file)
@@ -1,13 +1,25 @@
 package Devel::REPL::Profile::Default;
 
-use Moose;
-use namespace::clean -except => [ 'meta' ];
+use Moo;
+use namespace::sweep;
 
 with 'Devel::REPL::Profile';
 
-sub plugins {
-  qw(History LexEnv DDS Packages Commands);
-}
+sub plugins { qw(
+  Colors
+  Completion
+  CompletionDriver::INC
+  CompletionDriver::LexEnv
+  CompletionDriver::Keywords
+  CompletionDriver::Methods
+  History
+  LexEnv
+  DDS
+  Packages
+  Commands
+  MultiLine::PPI
+  ReadLineHistory
+);}
 
 sub apply_profile {
   my ($self, $repl) = @_;