Created
May 23, 2011 14:38
-
-
Save vaclavbohac/986795 to your computer and use it in GitHub Desktop.
My emacs config file.
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
| " Set up color theme. " | |
| (add-to-list 'load-path ".emacs.d") | |
| (require 'color-theme) | |
| (require 'color-theme-gruber-darker) | |
| (eval-after-load "color-theme" | |
| '(progn | |
| (color-theme-initialize) | |
| (color-theme-gruber-darker))) | |
| " Set up font size. " | |
| (set-face-attribute 'default nil :height 160) | |
| " Hide toolbar. " | |
| (tool-bar-mode -1) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment