@remirror/preset-core
The core preset providing the functionality you need and want.

Installation
yarn add @remirror/preset-core@next
pnpm add @remirror/preset-core@next
npm install @remirror/preset-core@next
Usage
When added to your editor it will provide the required nodes, marks to your editor.
import { RemirrorManager } from '@remirror/core';
import { CorePreset } from '@remirror/preset-core';
const corePreset = new CorePreset({ rootContent: 'block*' });
const manager = RemirrorManager.create([corePreset]);
const element = document.createElement('div');
document.body.appendChild(element);
manager.addView(element);
Granted, the above won't do much. It will allow you to type, and what else do you really need from
an editor.
Credits
This package was bootstrapped with monots.