summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniil Baturin <daniil@baturin.org>2017-01-17 14:01:58 +0700
committerDaniil Baturin <daniil@baturin.org>2017-01-17 14:01:58 +0700
commitee79ba2a593e45ff942554440bb8859ee3228a4b (patch)
tree1a39182f7dce793beb8efbccb6cf621274dcfb1c
parentc4d8a6e4621133e9d65084e84fe5fa0ea63253d4 (diff)
downloadvyconf-ee79ba2a593e45ff942554440bb8859ee3228a4b.tar.gz
vyconf-ee79ba2a593e45ff942554440bb8859ee3228a4b.zip
Remove reference to Shon Feder's homedir. ;)
Also, this will work for bare ocaml REPL too, specifically for utop you don't need to load topfind since it does that by default.
-rw-r--r--.ocamlinit4
1 files changed, 1 insertions, 3 deletions
diff --git a/.ocamlinit b/.ocamlinit
index 96a55ea..648872a 100644
--- a/.ocamlinit
+++ b/.ocamlinit
@@ -1,4 +1,4 @@
-(* Vyconf development utop environment
+(* 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.
@@ -16,7 +16,6 @@ let () =
#require "lwt";;
#require "lwt.unix";;
#require "lwt.ppx";;
-#require "ppx_deriving.runtime";;
#require "ppx_deriving.show";;
#require "ppx_deriving_yojson";;
#require "fileutils";;
@@ -24,7 +23,6 @@ let () =
#require "toml";;
#require "xml-light";;
-#directory "/Users/sf/Programming/VyConf/vyconf/_build";;
#cd "_build/src";;
print_string "VyConf .ocamlinit has been successfully loaded\n";;