mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
13 lines
400 B
EmacsLisp
13 lines
400 B
EmacsLisp
;; Homebrew
|
|
(push "/usr/local/bin" exec-path)
|
|
|
|
;; rbenv
|
|
(setq exec-path (cons "~/.rbenv/bin" exec-path))
|
|
(setenv "PATH" (concat "~/.rbenv/bin:" (getenv "PATH")))
|
|
(setq exec-path (cons "~/.rbenv/shims" exec-path))
|
|
(setenv "PATH" (concat "~/.rbenv/shims:" (getenv "PATH")))
|
|
|
|
;; node.js
|
|
(setq exec-path (cons "~/.nvm/v0.8.4/bin" exec-path))
|
|
(setenv "PATH" (concat "~/.nvm/v0.8.4/bin:" (getenv "PATH")))
|