I hereby claim:
- I am matthewdarling on github.
- I am matthewdarling (https://keybase.io/matthewdarling) on keybase.
- I have a public key ASCslzcjgb2RY4gwyX7-RZ9LKzanl-fA1PuXZ3iVvIeKqAo
To claim this, I am signing this object:
;;; File: check-clojure-mode-version | |
;;; Matthew Darling | |
;;; 15 June 2016 | |
(setq package-archives '(("gnu" . "http://elpa.gnu.org/packages/") | |
("melpa-stable" . "http://stable.melpa.org/packages/"))) | |
(require 'package) | |
(package-initialize) | |
(package-refresh-contents) |
I hereby claim:
To claim this, I am signing this object:
;;; Based on http://arnab-deka.com/posts/2012/09/emacs-change-fonts-dynamically-based-on-screen-resolution/ | |
(defun fontify-frame (&optional frame) | |
(interactive) | |
(let ((target (or frame (window-frame)))) | |
(if window-system | |
(if (or | |
(> (frame-pixel-height) 2000) | |
(> (frame-pixel-width) 2000)) | |
(set-frame-parameter target 'font "Menlo 19") | |
(set-frame-parameter target 'font "Menlo 16"))))) |