Skip to content

Commit 60624cb

Browse files
committed
feat(ui): make mixed-pitch obsolete
1 parent 73a3e39 commit 60624cb

File tree

2 files changed

+33
-20
lines changed

2 files changed

+33
-20
lines changed

modules/me-ui.el

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -86,26 +86,6 @@
8686
:bind ([f10] . lacarte-execute-menu-command))
8787

8888

89-
;; Use a variable pitch, keeping fixed pitch where it's sensible
90-
(use-package mixed-pitch
91-
:straight t
92-
:custom
93-
(mixed-pitch-variable-pitch-cursor nil)
94-
:config
95-
(setq
96-
mixed-pitch-fixed-pitch-faces
97-
(delete-dups
98-
(append
99-
mixed-pitch-fixed-pitch-faces
100-
'(font-lock-comment-delimiter-face font-lock-comment-face org-block
101-
org-block-begin-line org-block-end-line org-cite org-cite-key
102-
org-document-info-keyword org-done org-drawer org-footnote org-formula
103-
org-inline-src-block org-latex-and-related org-link org-code org-column
104-
org-column-title org-date org-macro org-meta-line org-property-value
105-
org-quote org-ref-cite-face org-sexp-date org-special-keyword org-src
106-
org-table org-tag org-tag-group org-todo org-verbatim org-verse)))))
107-
108-
10989
;; Display "^L" page breaks as tidy horizontal lines
11090
(use-package page-break-lines
11191
:straight t

modules/obsolete/me-mixed-pitch.el

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
;;; me-mixed-pitch.el --- Description -*- lexical-binding: t; -*-
2+
3+
;; Copyright (C) 2022-2024 Abdelhak Bougouffa
4+
5+
;; Author: Abdelhak Bougouffa (rot13 "nobhtbhssn@srqbencebwrpg.bet")
6+
7+
;;; Commentary:
8+
9+
;;; Code:
10+
11+
12+
;; Use a variable pitch, keeping fixed pitch where it's sensible
13+
(use-package mixed-pitch
14+
:straight t
15+
:custom
16+
(mixed-pitch-variable-pitch-cursor nil)
17+
:config
18+
(setq
19+
mixed-pitch-fixed-pitch-faces
20+
(delete-dups
21+
(append
22+
mixed-pitch-fixed-pitch-faces
23+
'(font-lock-comment-delimiter-face font-lock-comment-face org-block
24+
org-block-begin-line org-block-end-line org-cite org-cite-key
25+
org-document-info-keyword org-done org-drawer org-footnote org-formula
26+
org-inline-src-block org-latex-and-related org-link org-code org-column
27+
org-column-title org-date org-macro org-meta-line org-property-value
28+
org-quote org-ref-cite-face org-sexp-date org-special-keyword org-src
29+
org-table org-tag org-tag-group org-todo org-verbatim org-verse)))))
30+
31+
32+
(provide 'obsolete/me-mixed-pitch)
33+
;;; me-mixed-pitch.el ends here

0 commit comments

Comments
 (0)