diff --git a/init.el b/init.el index 707a4b8..e85812a 100644 --- a/init.el +++ b/init.el @@ -10,7 +10,7 @@ (scroll-bar-mode 0) ;; Appearance -(set-frame-font "ttyp0 12") +(set-frame-font "DejaVu Sans Mono 10") ; theme set in packages.el (global-linum-mode) (blink-cursor-mode nil) @@ -58,6 +58,9 @@ (interactive (list term-shell))) (ad-activate 'ansi-term) +;; C configuration + + ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; @@ -66,7 +69,7 @@ ;; If you edit it by hand, you could mess it up, so be careful. ;; Your init file should contain only one such instance. ;; If there is more than one, they won't work right. - '(package-selected-packages (quote (almost-mono-themes use-package)))) + '(package-selected-packages '(tao-themes tao-theme almost-mono-themes use-package))) (custom-set-faces ;; custom-set-faces was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. diff --git a/packages.el b/packages.el index e510c33..af54b92 100644 --- a/packages.el +++ b/packages.el @@ -15,3 +15,8 @@ :ensure t :init (load-theme 'almost-mono-black t)) + +(use-package haskell-mode + :ensure t + :init + (add-hook 'haskell-mode-hook 'interactive-haskell-mode))