diff options
author | Marc Coquand <marc@coquand.email> | 2024-12-17 16:10:47 +0100 |
---|---|---|
committer | Marc Coquand <marc@coquand.email> | 2024-12-17 16:10:47 +0100 |
commit | 507056b3ca86866fc0b4611c4bb4fdac0d17061d (patch) | |
tree | 224bdef30f1eb0dce3f104f09aaa884b5d4b1f35 /home/dots/.emacs.d | |
parent | f8bce74e58b4b328dd34c35abd30368672a0841b (diff) | |
download | guix-507056b3ca86866fc0b4611c4bb4fdac0d17061d.tar.gz guix-507056b3ca86866fc0b4611c4bb4fdac0d17061d.tar.bz2 guix-507056b3ca86866fc0b4611c4bb4fdac0d17061d.zip |
.
Diffstat (limited to 'home/dots/.emacs.d')
-rw-r--r-- | home/dots/.emacs.d/BOGO-theme.el | 8 | ||||
-rw-r--r-- | home/dots/.emacs.d/elisp/org-link-minor-mode.el | 10 |
2 files changed, 9 insertions, 9 deletions
diff --git a/home/dots/.emacs.d/BOGO-theme.el b/home/dots/.emacs.d/BOGO-theme.el index ca3ba8f..c0a96da 100644 --- a/home/dots/.emacs.d/BOGO-theme.el +++ b/home/dots/.emacs.d/BOGO-theme.el @@ -2,7 +2,7 @@ "Created 2024-11-20.") (custom-theme-set-faces - 'BOGO + 'BOGO '(default ((t (:inherit nil :extend nil :stipple nil :background "#fffff8" :foreground "#111111" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight regular :height 150 :width expanded :foundry "UKWN" :family "Iosevka SS13 Extended")))) '(avy-lead-face ((t (:inherit fixed-pitch :background "dark red" :foreground "white")))) '(calendar-weekend-header ((t (:inherit nil)))) @@ -87,7 +87,7 @@ '(org-scheduled-today ((t nil))) '(org-list-dt ((t (:weight bold)))) '(org-agenda-calendar-event ((t nil))) - '(org-drawer ((t nil))) + '(org-drawer ((t :inherit fixed-pitch))) '(org-hide ((t (:foreground "#FFFFF8")))) '(org-done ((t (:inherit (org-agenda-dimmed-todo-face fixed-pitch) :strike-through nil :extend nil :weight bold)))) '(org-todo ((t (:weight bold :inherit fixed-pitch)))) @@ -95,7 +95,7 @@ '(org-priority ((t (:inherit fixed-pitch)))) '(org-headline-done ((t (:inherit org-agenda-dimmed-todo-face)))) '(org-level-1 ((t (:inherit outline-1 :extend nil :weight regular)))) - '(org-tag ((t (:foreground "gray70")))) + '(org-tag ((t (:foreground "gray70" :inherit fixed-pitch)))) '(org-time-grid ((t (:foreground "gray")))) '(org-meta-line ((t (:foreground "gray" :inherit fixed-pitch)))) '(org-block-begin-line ((t :inherit org-tag))) @@ -114,7 +114,7 @@ '(tldr-command-itself ((t (:background "khaki" :foreground "#111111" :weight bold)))) '(tldr-introduction ((t (:foreground "#111111" :slant italic)))) '(tldr-title ((t (:inherit variable-pitch :foreground "#111111" :weight bold)))) - '(variable-pitch ((t (:family "Iosevka Aile" :height 1.0)))) + '(variable-pitch ((t (:family "Iosevka Aile")))) '(window-divider ((t (:foreground "gray90"))))) (provide-theme 'BOGO) diff --git a/home/dots/.emacs.d/elisp/org-link-minor-mode.el b/home/dots/.emacs.d/elisp/org-link-minor-mode.el index 7f1faaa..06ad48e 100644 --- a/home/dots/.emacs.d/elisp/org-link-minor-mode.el +++ b/home/dots/.emacs.d/elisp/org-link-minor-mode.el @@ -11,26 +11,26 @@ ;; Package-Version: 20200129.0141 ;; Keywords: hypermedia ;; Url: https://github.com/seanohalpin/org-link-minor-mode -;; +;; ;; Changes for org v9: Stefan-W. Hahn <stefan dot hahn at s-hahn dot de> ;; ;; This file is free software; you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by ;; the Free Software Foundation; either version 3, or (at your option) ;; any later version. -;; +;; ;; This file is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;; GNU General Public License for more details. -;; +;; ;; You should have received a copy of the GNU General Public License ;; along with this program. If not, see <http://www.gnu.org/licenses/>. ;; ;;; Commentary: ;; ;; Enables org-mode links of the form: -;; +;; ;; http://www.bbc.co.uk ;; man:emacs ;; info:emacs @@ -39,7 +39,7 @@ ;; [[org-link-minor-mode]] ;; [2012-08-18] ;; <2012-08-18> -;; +;; ;; Note that `org-toggle-link-display' will also work when this mode ;; is enabled. ;; |