better modeline/colors

This commit is contained in:
Iñaki Domínguez
2016-12-28 19:38:09 +01:00
parent a8e3664a3c
commit 39e805f587
6 changed files with 80 additions and 39 deletions

34
init.el
View File

@@ -1,4 +1,4 @@
;;(package-initialize)
(package-initialize)
(defun byte-compile-init-dir ()
"Byte-compile all your dotfiles."
@@ -19,19 +19,27 @@
;; 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.
'(haskell-process-suggest-remove-import-lines t)
'(haskell-process-auto-import-loaded-modules t)
'(haskell-process-log t)
'(haskell-process-type 'cabal-repl)
'(package-selected-packages
(quote
(swiper colemak-evil evil all-the-icons use-package rich-minority projectile mode-icons magit-find-file haskell-mode gruvbox-theme fill-column-indicator evil-magit counsel))))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; 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.
'(term-color-black ((t (:foreground "#525252"))))
'(term-color-blue ((t (:foreground "#33ddff"))))
'(term-color-cyan ((t (:foreground "#196f80"))))
'(term-color-green ((t (:foreground "#bf4c26"))))
'(term-color-magenta ((t (:foreground "#26a6bf"))))
'(term-color-red ((t (:foreground "#ff6633"))))
'(term-color-white ((t (:foreground "#bfbfbf"))))
'(term-color-yellow ((t (:foreground "#803319")))))
'(mode-line ((t (:background " "))))
'(linum ((t (:underline nil))))
)
;; ;; custom-set-faces was added by Custom.
;; ;; 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.
;; '(term-color-black ((t (:foreground "#525252"))))
;; '(term-color-blue ((t (:foreground "#33ddff"))))
;; '(term-color-cyan ((t (:foreground "#196f80"))))
;; '(term-color-green ((t (:foreground "#bf4c26"))))
;; '(term-color-magenta ((t (:foreground "#26a6bf"))))
;; '(term-color-red ((t (:foreground "#ff6633"))))
;; '(term-color-white ((t (:foreground "#bfbfbf"))))
;; '(term-color-yellow ((t (:foreground "#803319")))))