diff --git a/app/Main.hs b/app/Main.hs
--- a/app/Main.hs
+++ b/app/Main.hs
@@ -1,18 +1,17 @@
-{-# language OverloadedStrings #-}
+{-# language OverloadedStrings, RankNTypes #-}
 module Main where
 
 import Rasa (rasa)
 import Rasa.Ext
 import Rasa.Ext.Views
-import Rasa.Ext.Style
 import Rasa.Ext.Vim
 import Rasa.Ext.Files
-import Rasa.Ext.StatusBar
 import Rasa.Ext.Logger
 import Rasa.Ext.Cursors
 import Rasa.Ext.Slate
 
-import Control.Monad
+-- import Control.Monad
+-- import Control.Monad.Trans
 
 -- | This is the main of an executable that runs rasa with any extensions the
 -- user wants
@@ -21,12 +20,10 @@
 
 main :: IO ()
 main = rasa $ do
-  views
+  viewports
   vim
-  statusBar
   files
   cursors
   logger
   slate
-  style
-  onInit $ newBuffer "This is a buffer to get you started!\nYou can also pass command line args to rasa"
+  afterInit $ addBuffer "This is a buffer to get you started!\nYou can also pass command line args to rasa"
diff --git a/rasa-example-config.cabal b/rasa-example-config.cabal
--- a/rasa-example-config.cabal
+++ b/rasa-example-config.cabal
@@ -1,5 +1,5 @@
 name: rasa-example-config
-version: 0.1.3
+version: 0.1.4
 cabal-version: >=1.10
 build-type: Simple
 license: GPL-3
@@ -21,16 +21,16 @@
     main-is: Main.hs
     build-depends:
         base >=4.8 && <5,
-        rasa >=0.1.9 && <0.2,
-        rasa-ext-views >=0.1.3 && <0.2,
-        rasa-ext-vim >=0.1.5 && <0.2,
-        rasa-ext-style >=0.1.4 && <0.2,
-        rasa-ext-cursors >=0.1.5 && <0.2,
-        rasa-ext-status-bar >=0.1.3 && <0.2,
+        rasa >=0.1.10 && <0.2,
+        rasa-ext-views >=0.1.4 && <0.2,
+        rasa-ext-vim >=0.1.6 && <0.2,
+        rasa-ext-cursors >=0.1.6 && <0.2,
         rasa-ext-logger >=0.1.3 && <0.2,
-        rasa-ext-files >=0.1.3 && <0.2,
-        rasa-ext-slate >=0.1.6 && <0.2,
+        rasa-ext-files >=0.1.4 && <0.2,
+        rasa-ext-slate >=0.1.7 && <0.2,
         lens ==4.14.*,
+        data-default >=0.7.1.1 && <0.8,
+        yi-rope >=0.7.0.2 && <0.8,
         mtl >=2.2.1 && <2.3
     default-language: Haskell2010
     hs-source-dirs: app
