mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
11 lines
207 B
EmacsLisp
11 lines
207 B
EmacsLisp
;;
|
|
;; Node.js setup
|
|
;;
|
|
|
|
(setq exec-path (cons "~/.nvm/v0.10.24/bin" exec-path))
|
|
;; (setenv "PATH" (concat "~/.nvm/v0.10.24/bin:" (getenv "PATH")))
|
|
|
|
|
|
(when (require 'nvm nil 'noerror)
|
|
(nvm-use "v0.10.24"))
|