switched from RVM to rbenv

This commit is contained in:
2011-09-27 12:02:44 +01:00
parent f8c355a47d
commit 6543d5ef27
3 changed files with 9 additions and 6 deletions

8
env.el Normal file
View File

@@ -0,0 +1,8 @@
;; 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")))

View File

@@ -1,7 +1,6 @@
;; emacs configuration
(push "/usr/local/bin" exec-path)
(load-file "~/.emacs.d/env.el")
(load-file "~/.emacs.d/packages.el")
(load-file "~/.emacs.d/helpers.el")
(load-file "~/.emacs.d/languages.el")

View File

@@ -104,7 +104,6 @@
php-mode-improved
ruby-mode
ruby-compilation
rvm
;; smooth-scrolling
;; smooth-scroll
textmate
@@ -124,9 +123,6 @@
(yas/initialize)
(yas/load-directory "~/.emacs.d/snippets")
;; Configure RVM
(rvm-use-default)
;; Load ElScreen
(require 'elscreen)