alma 0.1.1

A Bevy-native modal text editor with Vim-style navigation.
Documentation

Alma

Alma is a Bevy application scaffold targeting Bevy 0.18.1.

Development

For a faster Bevy edit loop, run with the dev feature:

cargo run --features dev

This enables Bevy dynamic linking for faster rebuilds and the file watcher for asset hot reload. Rust code still needs the app process to restart after a compile. To do that automatically, install cargo-watch once:

cargo install cargo-watch

Then run:

cargo watch -x "run --features dev"

Now source changes rebuild and relaunch the app for you. Asset changes under assets/ can reload inside the running app when Bevy has loaded those assets.