Created
September 6, 2012 09:35
-
-
Save zampino/3653856 to your computer and use it in GitHub Desktop.
.emacs@mneme
This file contains hidden or 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
(global-auto-revert-mode 1) | |
(menu-bar-mode -1) | |
(tool-bar-mode -1) | |
;; KEY BINDINGS | |
(scroll-bar-mode -1) | |
(add-to-list 'load-path "/home/andrea/dev/devolute/emacs-configs/niklas-.emacs.d/rails/") | |
(load "/home/andrea/dev/devolute/emacs-configs/niklas-.emacs.d/rails/rails.el") | |
(load "/home/andrea/.emacs.d/coffee-mode/coffee-mode.el") | |
(add-to-list 'load-path "/home/andrea/.emacs.d/") | |
(add-to-list 'load-path "/home/andrea/emacs/") | |
(load "/home/andrea/emacs/js2-mode/js2-mode.elc") | |
(autoload 'js2-mode "js2-mode" nil t) | |
(add-to-list 'auto-mode-alist '("\\.js$" . js2-mode)) | |
(require 'haml-mode) | |
(require 'yaml-mode) | |
(add-to-list 'auto-mode-alist '("[.]zcml$" . xml-mode)) | |
(add-to-list 'auto-mode-alist '("[.]haml$" . haml-mode)) | |
(add-to-list 'auto-mode-alist '("[.]yml$" . yaml-mode)) | |
(invert-face 'default) | |
(custom-set-variables | |
'(js2-basic-offset 2) | |
'(js2-bounce-indent-p t) | |
) | |
(custom-set-variables | |
;; custom-set-variables was added by Custom. | |
;; If you edit it by hand, you could mess it up, so be careful. | |
;; Your init file should contain only one such instance. | |
;; If there is more than one, they won't work right. | |
) | |
(custom-set-faces | |
;; custom-set-faces was added by Custom. | |
;; If you edit it by hand, you could mess it up, so be careful. | |
;; Your init file should contain only one such instance. | |
;; If there is more than one, they won't work right. | |
'(default ((t (:inherit nil :stipple nil :background "black" :foreground "white" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 100 :width normal :foundry "unknown" :family "DejaVu Sans Mono"))))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment