-
-
Save jtimberman/bac0515670004ba0eeee0af5db26c43c to your computer and use it in GitHub Desktop.
Revisions
-
arnab revised this gist
Sep 24, 2012 . 1 changed file with 3 additions and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,5 @@ ;; Gist-ed from in https://github.com/arnab/emacs-starter-kit (defun fontify-frame (frame) (interactive) (if window-system @@ -10,4 +12,4 @@ (fontify-frame nil) ;; Fontify any future frames (push 'fontify-frame after-make-frame-functions) -
arnab created this gist
Sep 24, 2012 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ (defun fontify-frame (frame) (interactive) (if window-system (progn (if (> (x-display-pixel-width) 2000) (set-frame-parameter frame 'font "Inconsolata 19") ;; Cinema Display (set-frame-parameter frame 'font "Inconsolata 16"))))) ;; Fontify current frame (fontify-frame nil) ;; Fontify any future frames (push 'fontify-frame after-make-frame-functions)