diff --git a/wax-prosemirror-plugins/src/ShortCutsService/ShortCuts.js b/wax-prosemirror-plugins/src/ShortCutsService/ShortCuts.js
index f8a27e94799546abe43f04099d259519e265dba6..fd511d861b1eb15c9694a8b61b31ebe69152af10 100644
--- a/wax-prosemirror-plugins/src/ShortCutsService/ShortCuts.js
+++ b/wax-prosemirror-plugins/src/ShortCutsService/ShortCuts.js
@@ -13,13 +13,12 @@ import {
 
 @injectable()
 class ShortCuts {
-  constructor(config) {
-    this.schema = config.schema;
-    this.shortCuts = config.shortCuts;
+  constructor(plugins, schema) {
+    this.PmPlugins = plugins;
+    this.schema = schema;
 
     this.insertBreak = this.insertBreak.bind(this);
     this.insertRule = this.insertRule.bind(this);
-    return keymap(this.createKeyBindings());
   }
 
   insertBreak(state, dispatch) {
@@ -34,6 +33,15 @@ class ShortCuts {
     return true;
   }
 
+  createShortCuts() {
+    const shortCuts = keymap(this.createKeyBindings());
+    this.PmPlugins.add("shortcuts", shortCuts);
+  }
+
+  addShortCut() {
+    /* TODO add shortcut from each package*/
+  }
+
   createKeyBindings() {
     const keys = Object.assign(this.getKeys(), this.shortCuts);
     Object.keys(baseKeymap).forEach(key => {
diff --git a/wax-prosemirror-plugins/src/ShortCutsService/ShortCutsService.js b/wax-prosemirror-plugins/src/ShortCutsService/ShortCutsService.js
index fb4dd8e7ff5cc5f12a912123661f31720eefffd8..17a42b805f91de993b4f641caa5811ac35d32773 100644
--- a/wax-prosemirror-plugins/src/ShortCutsService/ShortCutsService.js
+++ b/wax-prosemirror-plugins/src/ShortCutsService/ShortCutsService.js
@@ -4,7 +4,20 @@ import ShortCuts from "./ShortCuts";
 export default class ShortCutsService extends Service {
   name = "ShortCutsService";
 
-  boot() {}
+  boot() {
+    const shortCuts = this.container.get("ShortCuts");
+    shortCuts.createShortCuts();
+  }
 
-  register() {}
+  register() {
+    const PmPlugins = this.app.PmPlugins;
+    this.container
+      .bind("ShortCuts")
+      .toDynamicValue(() => {
+        const { schema: { schema } } = this.app;
+
+        return new ShortCuts(PmPlugins, schema);
+      })
+      .inSingletonScope();
+  }
 }