mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
14 lines
349 B
EmacsLisp
14 lines
349 B
EmacsLisp
;;
|
|
;; Ruby setup
|
|
;;
|
|
|
|
;; 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")))
|
|
|
|
;; rbenv package - does not work >_<
|
|
;; (when (require 'rbenv nil 'noerror)
|
|
;; (global-rbenv-mode))
|