Rename .emacs/init → .emacs/init.d and fix comment-face.

Inheriting `font-lock-comment-face` in `font-lock-comment-face` would lock up
Emacs.
This commit is contained in:
tastytea 2019-12-26 19:23:43 +01:00
parent e18deb8049
commit 2d576fec10
18 changed files with 15 additions and 13 deletions

1
init Symbolic link
View File

@ -0,0 +1 @@
init.d

View File

@ -1,6 +1,6 @@
;;; appearance.el --- Configure appearance. -*- lexical-binding: t; -*- ;;; appearance.el --- Configure appearance. -*- lexical-binding: t; -*-
;; Time-stamp: <2019-12-13T16:54:47+00:00> ;; Time-stamp: <2019-12-26T18:18:19+00:00>
;;; Commentary: ;;; Commentary:
@ -41,18 +41,19 @@
;; Themes for doom-modeline. ;; Themes for doom-modeline.
(unless slow-computer (unless slow-computer
(use-package doom-themes (use-package doom-themes
:after (all-the-icons) :after (all-the-icons)
:config :config
(load-theme 'doom-molokai t) (load-theme 'doom-molokai t)
(doom-themes-visual-bell-config) ; Flash modeline on error. (doom-themes-visual-bell-config) ; Flash modeline on error.
:custom-face :custom-face
(font-lock-comment-face ((t (:inherit font-lock-comment-face ;; (font-lock-comment-face ((t (:inherit font-lock-comment-face
:foreground "#667755")))) ;; :foreground "#667755"))))
) (font-lock-comment-face ((t (:foreground "#667755"))))
) ; unless slow-computer. )
) ; unless slow-computer.
;; Neat modeline. ;; Neat modeline.
(use-package doom-modeline (use-package doom-modeline

View File

@ -1,6 +1,6 @@
;;; init.el --- tastytea's Emacs init file. -*- lexical-binding: t; -*- ;;; init.el --- tastytea's Emacs init file. -*- lexical-binding: t; -*-
;; Time-stamp: <2019-11-14T11:49:41+00:00> ;; Time-stamp: <2019-12-26T18:21:40+00:00>
;;; Commentary: ;;; Commentary:
;; Requires at least Emacs 26. Most of it will probably work with Emacs 24 and ;; Requires at least Emacs 26. Most of it will probably work with Emacs 24 and
@ -9,7 +9,7 @@
;;; Code: ;;; Code:
;; Add path to init files. ;; Add path to init files.
(push "~/.emacs.d/init" load-path) (push "~/.emacs.d/init.d" load-path)
(require 'basics/package-management) (require 'basics/package-management)