Skip to content

Instantly share code, notes, and snippets.

@intinig
Created July 6, 2011 09:58
Show Gist options
  • Save intinig/1066944 to your computer and use it in GitHub Desktop.
Save intinig/1066944 to your computer and use it in GitHub Desktop.
My .emacs
(tool-bar-mode -1)
(add-to-list 'load-path "~/.emacs.d/vendor/")
(require 'textmate)
(require 'peepopen)
(textmate-mode)
(require 'yaml-mode)
(add-to-list 'auto-mode-alist '("\\.yml$" . yaml-mode))
(add-to-list 'load-path "~/.emacs.d/vendor/color-theme-6.6.0")
(require 'color-theme)
(eval-after-load "color-theme"
'(progn
(color-theme-initialize)
(color-theme-solarized-light)))
;; sets the default font to menlo
(defun fontify-frame (frame)
(set-frame-parameter frame 'font "Menlo Regular-14"))
(add-to-list 'load-path "~/.emacs.d/vendor/git-emacs")
(require 'git-emacs)
(require 'uniquify)
(setq uniquify-buffer-name-style 'reverse)
(setq uniquify-separator "/")
(setq uniquify-after-kill-buffer-p t) ; rename after killing uniquified
(setq uniquify-ignore-buffers-re "^\\*") ; don't muck with special buffers
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment