Skip to content

Instantly share code, notes, and snippets.

@melito
Created January 25, 2010 07:23
Show Gist options
  • Select an option

  • Save melito/285698 to your computer and use it in GitHub Desktop.

Select an option

Save melito/285698 to your computer and use it in GitHub Desktop.
;;; Adds the color theme library to the load path and requires it
(add-to-list 'load-path "~/.emacs.d/vendor/color-theme-6.6.0")
(require 'color-theme)
(color-theme-initialize)
(color-theme-euphoria) ; Sex.
;;; Enables ido-mode by default
(ido-mode t)
;;; Rinari for Rails stuff....rails. lol.
(add-to-list 'load-path "/opt/rinari")
(require 'rinari)
;;; Cucumber.el - feature-mode
(add-to-list 'load-path "/opt/cucumber.el")
(require 'feature-mode)
;;; Magit - git mode
(add-to-list 'load-path "/opt/magit-0.7")
(require 'magit)
;;; Gist.el - gist mode
(add-to-list 'load-path "/opt/gist.el")
(require 'gist)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; This is needed for Erlang mode setup
(setq erlang-root-dir "/usr/local/lib/erlang")
(add-to-list 'load-path "/usr/local/lib/erlang/lib/tools-2.6.4/emacs")
(setq exec-path (cons "/usr/local/lib/erlang/bin" exec-path))
(require 'erlang-start)
(add-to-list 'load-path "/opt/distel/elisp")
(require 'distel)
(distel-setup)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment