summaryrefslogtreecommitdiff
path: root/.ocamlinit
blob: 58bfe4ab10b90f938481769c1785b86b9eae458e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
(* Vyconf development environment for OCaml toplevel
 *
 * NOTE: To keep this functioning as expected, we will need to register new
 * package dependencies here as they are added to the project.
 *
 * TODO: Automate the addition of dependencies via an _oasis plugin.
 *)

let () =
  try Topdirs.dir_directory (Sys.getenv "OCAML_TOPLEVEL_PATH")
  with Not_found -> ()
;;

#use "topfind";;

#require "lwt";;
#require "lwt.unix";;
#require "lwt.ppx";;
#require "ppx_deriving.show";;
#require "ppx_deriving_yojson";;
#require "fileutils";;
#require "pcre";;
#require "toml";;
#require "xml-light";;
#require "batteries";;

#cd "_build/src";;

print_string "VyConf .ocamlinit has been successfully loaded\n";;