diff options
author | William Carroll <wpcarro@gmail.com> | 2019-12-22T21·01+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2019-12-24T15·21+0000 |
commit | 8fc68d8edb9034db56c30b9afcec01ba71856dbe (patch) | |
tree | f731d85537cbc38474e8318bc09fb79ed5b47836 | |
parent | 3dc1bc4f841042eda9b8d17a97ff6e7b714c881a (diff) |
Update OCaml support
After attempting to run OCaml on a separate machine, I realized that I needed to update the documentation in my wpc-ocaml package.
-rw-r--r-- | configs/shared/.emacs.d/opam-user-setup.el | 4 | ||||
-rw-r--r-- | configs/shared/.emacs.d/wpc/packages/wpc-ocaml.el | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/configs/shared/.emacs.d/opam-user-setup.el b/configs/shared/.emacs.d/opam-user-setup.el index 3c7af326a866..a23addefafe4 100644 --- a/configs/shared/.emacs.d/opam-user-setup.el +++ b/configs/shared/.emacs.d/opam-user-setup.el @@ -120,11 +120,11 @@ (opam-auto-tools-setup) ;; ## end of OPAM user-setup addition for emacs / base ## keep this line -;; ## added by OPAM user-setup for emacs / tuareg ## 02c044af5abd4321e32578768beeca77 ## you can edit, but keep this line +;; ## added by OPAM user-setup for emacs / tuareg ## b10f42abebd2259b784b70d1a7f7e426 ## you can edit, but keep this line ;; Set to autoload tuareg from its original switch when not found in current ;; switch (don't load tuareg-site-file as it adds unwanted load-paths) (defun opam-tuareg-autoload (fct file doc args) - (let ((load-path (cons "/usr/local/google/home/wpcarro/.opam/4.08.0/share/emacs/site-lisp" load-path))) + (let ((load-path (cons "/home/wpcarro/.opam/default/share/emacs/site-lisp" load-path))) (load file)) (apply fct args)) (when (not (member "tuareg" opam-tools-installed)) diff --git a/configs/shared/.emacs.d/wpc/packages/wpc-ocaml.el b/configs/shared/.emacs.d/wpc/packages/wpc-ocaml.el index 3b898d32be54..8bd1c63f63aa 100644 --- a/configs/shared/.emacs.d/wpc/packages/wpc-ocaml.el +++ b/configs/shared/.emacs.d/wpc/packages/wpc-ocaml.el @@ -7,7 +7,7 @@ ;; Dependencies: ;; - `opam install tuareg` ;; - `opam install merlin` -;; - `opam install user-setup` +;; - `opam install user-setup && opam user-setup install` ;; - `opam install ocamlformat` ;;; Code: |