mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
switched from RVM to rbenv
This commit is contained in:
8
env.el
Normal file
8
env.el
Normal 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")))
|
||||
3
init.el
3
init.el
@@ -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")
|
||||
|
||||
@@ -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)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user