mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
10 lines
292 B
EmacsLisp
10 lines
292 B
EmacsLisp
;; rbenv
|
|
(setq exec-path (cons "~/.rbenv/bin" exec-path))
|
|
(setq exec-path (cons "~/.rbenv/shims" exec-path))
|
|
|
|
(setenv "PATH" (concat "~/.rbenv/bin:" (getenv "PATH")))
|
|
(setenv "PATH" (concat "~/.rbenv/shims:" (getenv "PATH")))
|
|
|
|
;; (when (require 'rbenv nil 'noerror)
|
|
;; (global-rbenv-mode))
|