[emacs] Add rvm

This commit is contained in:
Correl Roush 2014-11-03 21:29:39 -05:00
parent 9833f45476
commit 0e62a3a228
2 changed files with 9 additions and 0 deletions

View file

@ -31,6 +31,9 @@
;; Python ;; Python
(depends-on "python") (depends-on "python")
;; Ruby
(depends-on "rvm")
;; Erlang ;; Erlang
(depends-on "erlang") (depends-on "erlang")

View file

@ -194,6 +194,12 @@
(add-hook 'php-mode-hook 'my-php-mode-hook) (add-hook 'php-mode-hook 'my-php-mode-hook)
#+END_SRC #+END_SRC
** Ruby
#+name: programming
#+BEGIN_SRC emacs-lisp
(require 'rvm)
(rvm-use-default)
#+END_SRC
* Other functionality * Other functionality
** Rename file and buffer ** Rename file and buffer
Taken from [[http://emacsredux.com/blog/2013/05/04/rename-file-and-buffer/][Emacs Redux]] Taken from [[http://emacsredux.com/blog/2013/05/04/rename-file-and-buffer/][Emacs Redux]]