Created
July 6, 2011 09:58
-
-
Save intinig/1066944 to your computer and use it in GitHub Desktop.
My .emacs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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