diff --git a/index.html b/index.html index 6a23ef15..b3623cb8 100644 --- a/index.html +++ b/index.html @@ -3,7 +3,7 @@ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
- +(use-package hydra :demand t - :bind (("C-c f" . imalison:hydra-font-resize/body) + :bind (("C-c f" . imalison:hydra-font/body) ("C-c y" . imalison:hydra-yank/body) ("C-c 6" . imalison:compile/body)) :config @@ -2891,23 +2883,24 @@ This interferes with too many other packages. See-
(defhydra imalison:hydra-font-resize +(defhydra imalison:hydra-font nil - "Resize Font" + "Font Settings" ("-" imalison:font-size-decr "Decrease") ("d" imalison:font-size-decr "Decrease") ("=" imalison:font-size-incr "Increase") ("+" imalison:font-size-incr "Increase") ("i" imalison:font-size-incr "Increase") ("h" imalison:set-huge-font-size "Huge") + ("a" imalison:appearance "Set Default Appearance") ("f" set-frame-font "Set Frame Font") ("0" imalison:font-size-reset "Reset to default size"))@@ -6766,20 +6759,6 @@ I've disabled perspective because I just don't use it much.
-This needs a hackage install and I've never used it before. Just putting this here for later. -
-(use-package shm - :disabled t) --
-This automatically applies ansi-color interpretation of terminal escape sequences to compilation buffers +This automatically applies ansi-color interpretation of terminal escape +sequences to compilation buffers.
(defun colorize-compilation-buffer () - (read-only-mode) - (ansi-color-apply-on-region (point-min) (point-max)) - (read-only-mode)) + (let ((was-read-only read-only-mode)) + (when was-read-only (read-only-mode -1)) + (ansi-color-apply-on-region (point-min) (point-max)) + (when was-read-only (read-only-mode +1)))) + (add-hook 'compilation-filter-hook 'colorize-compilation-buffer)