change theme, add haskell-mode

This commit is contained in:
opFez 2020-12-08 15:12:05 +01:00
parent e5b69a0a88
commit 541c39efe7
2 changed files with 10 additions and 2 deletions

View File

@ -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.

View File

@ -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))