Change CKEditor Default Configuration

Here’s the final code for anyone following along at home, this gives a nice small version of the editor:

var field = arguments[0],
 value = skuid.utils.decodeHTML(arguments[1]); field.options.ckEditorConfig = function (){ return { toolbar : [ [ 'Undo', 'Redo' ] ,[ 'Bold', 'Italic',] ,['TextColor','BGColor','FontSize'] ,['NumberedList','BulletedList','Indent','Outdent'] // ,['Cut','Copy','Paste'] ,['Link','Unlink'] ,['RemoveFormat','HorizontalRule'] ] ,enterMode: CKEDITOR.ENTER_BR // ,toolbarLocation: 'bottom' }; }; skuid.ui.getFieldRenderer(field.metadata.displaytype)[field.mode](field,value);