Skip to content

Instantly share code, notes, and snippets.

@intinig
Created April 4, 2012 09:03
Show Gist options
  • Save intinig/2299820 to your computer and use it in GitHub Desktop.
Save intinig/2299820 to your computer and use it in GitHub Desktop.
;; My personal configuration on top of emacs-starter-kit
;; sets the default font to menlo
(defun fontify-frame (frame)
(set-frame-parameter frame 'font "Menlo Regular-14"))
(fontify-frame nil)
(push 'fontify-frame after-make-frame-functions)
;; default window size
(setq default-frame-alist '((width . 105) (height . 38) ))
;; remove trailing whitespaces
(add-hook 'before-save-hook 'delete-trailing-whitespace)
(load-theme 'adwaita)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment