Skip to content

Instantly share code, notes, and snippets.

@vaclavbohac
Created May 23, 2011 14:38
Show Gist options
  • Select an option

  • Save vaclavbohac/986795 to your computer and use it in GitHub Desktop.

Select an option

Save vaclavbohac/986795 to your computer and use it in GitHub Desktop.
My emacs config file.
" 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