#use "topfind";;

#require "core";;

open Core;;

#require "lambda-term";;

let path = Sys.getcwd () in
let home = Sys.home_directory () in
let path =
  if Zed_utf8.starts_with path home then
    Zed_utf8.replace path 0 (Zed_utf8.length home) "~"
  else
    path
in 
let user = Unix.getlogin () in
let version = Sys.ocaml_version in
let host = Unix.gethostname () in
let formatted = LTerm_text.eval
  [B_bold true;
   B_fg (LTerm_style.white); S "ā”Œ[";
   B_fg (LTerm_style.lyellow); S (Printf.sprintf "%s@" user);
   S (Printf.sprintf "ocaml-%s@%s " version host);
   B_fg (LTerm_style.lcyan); S (Printf.sprintf "%s" path);
   B_fg (LTerm_style.white); S "]\nā””: "]
in UTop.prompt := fst (React.S.create formatted);;