diff --git a/index.html b/index.html index fcdb28cf..20ef4989 100644 --- a/index.html +++ b/index.html @@ -3,7 +3,7 @@ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
- +(imalison:use-package multi-line + ;; Demand multi-line to avoid failre to load mode specific strategies + :demand t :bind ("C-c d" . multi-line) :config (progn ;; This only works for array respacing - (multi-line-defhook sh + (multi-line-defhook sh (make-instance 'multi-line-strategy :find multi-line-lisp-find-strategy @@ -4591,7 +4593,6 @@ Intero seems to be causing hangs, so it has been disabled(use-package intero - :disabled t :demand t :after haskell-mode :config (add-hook 'haskell-mode-hook 'intero-mode)) @@ -4621,6 +4622,7 @@ Intero seems to be causing hangs, so it has been disabled(use-package ghc :after haskell-mode + :disabled t :config (progn (setq ghc-debug t) @@ -4634,6 +4636,7 @@ Intero seems to be causing hangs, so it has been disabled(use-package company-ghc + :disabled t :demand t :config (add-to-list 'company-backends '(company-ghc :with company-dabbrev-code))) @@ -5595,8 +5598,12 @@ This function replaces the default naming scheme with a call to-13.1.1 magithub
+@@ -7349,7 +7358,7 @@ load-theme hook (See the heading below).+I've disabled magithub because it causes magit to be super slow +
(use-package magithub + :disabled t :if (executable-find "hub") :after magit)@@ -7303,11 +7310,11 @@ load-theme hook (See the heading below). (if (display-graphic-p) (progn (condition-case error - (set-face-attribute 'default nil :font "source code pro") + (progn (set-face-attribute 'default nil :font "source code pro") + (set-face-attribute + 'default nil :height imalison:default-font-size-pt)) ('error (message "Error: %s, when setting font" error))) - (set-face-attribute 'default nil :weight 'semi-bold) - (set-face-attribute - 'default nil :height imalison:default-font-size-pt)) + (set-face-attribute 'default nil :weight 'semi-bold)) (progn (load-theme 'source-code-pro t) (message "not setting font"))) @@ -7329,7 +7336,9 @@ load-theme hook (See the heading below). ;; This is needed because you can't set the font or theme at daemon start-up. ;; (when (display-graphic-p) (imalison:appearance)) (add-hook 'after-init-hook 'imalison:appearance) -(add-hook 'after-make-frame-functions 'imalison:initial-setup-hook) + +;; XXX: I think that after-init-hook is good enough +;; (add-hook 'after-make-frame-functions 'imalison:initial-setup-hook)