scribe 0.8.1

Text editor toolkit.
Documentation
{ pkgs ? import <nixpkgs> {}}:

pkgs.mkShell {
  buildInputs = with pkgs; [
    rustc
    cargo
    cargo-edit
    rustfmt
    rust-analyzer
    clippy
  ];

  RUST_BACKTRACE = 1;

  shellHook = ''
    # Vi mode
    set -o vi
  '';
}