[Emacs Lisp] Personal ~/.emacs.d/ configuration folder.
Those lines that got away :trollface:
blendoit/init-blendoit.org
@@ -87,6 +87,7 @@
87
87
#+NAME: shortcuts-customization
88
88
#+BEGIN_SRC emacs-lisp
89
89
(global-set-key (kbd "C-c v") 'customize-variable)
90
Added:
(global-set-key (kbd "C-c f") 'customize-face)
90
91
#+END_SRC
91
92
92
93
** Backups
@@ -236,7 +237,7 @@
236
237
#+BEGIN_SRC emacs-lisp
237
238
238
239
(let* ((variable-tuple
239
Removed:
(cond ((x-list-fonts "Liberation Sans") '(:font "Liberation Sans"))
240
Added:
(cond ((x-list-fonts "Dejavu Serif") '(:font "Dejavu Serif"))
240
241
((x-family-fonts "Sans Serif") '(:family "Sans Serif"))
241
242
(nil (warn "Cannot find a Sans Serif Font. Install Source Sans Pro."))))
242
243
(base-font-color (face-foreground 'default nil 'default))
@@ -491,12 +492,18 @@
491
492
** Faces & cursors
492
493
493
494
In order to imitate other modern text editors, we'll resort to a blinking bar
494
Removed:
cursor. The default cursor already blinks.
495
Added:
cursor. We choose red, the most captivating color, because the cursor is
496
Added:
arguably the region on our screen:
495
497
498
Added:
1. most often looked at;
499
Added:
2. most often searched when lost.
500
Added:
501
Added:
The default cursor already blinks.
502
Added:
496
503
*** Default cursor
497
504
498
505
In files containing only fixed-pitch fonts (i.e. files containing only code),
499
Removed:
the cursor becomes more visible box.
506
Added:
the cursor becomes a high-visibility box.
500
507
501
508
#+BEGIN_SRC emacs-lisp
502
509
(setq-default cursor-type (quote box))
blendoit/init-blendoit.pdf
Binary files differ
init-custom.el
@@ -140,7 +140,8 @@
140
140
;; Your init file should contain only one such instance.
141
141
;; If there is more than one, they won't work right.
142
142
'(default ((t (:family "Hack" :foundry "SRC" :slant normal :weight normal :height 142 :width normal))))
143
Removed:
'(fixed-pitch ((t (:family "Dejavu Serif"))))
143
Added:
'(cursor ((t (:background "red"))))
144
Added:
'(fixed-pitch ((t (:height 0.8 :family "Hack"))))
144
145
'(org-document-title ((t (:inherit default :weight bold :font "Liberation Sans" :height 2.0 :underline nil))))
145
146
'(org-level-1 ((t (:inherit default :weight bold :font "Liberation Sans" :height 1.75))))
146
147
'(org-level-2 ((t (:inherit default :weight bold :font "Liberation Sans" :height 1.5))))
@@ -150,4 +151,4 @@
150
151
'(org-level-6 ((t (:inherit default :weight bold :font "Liberation Sans"))))
151
152
'(org-level-7 ((t (:inherit default :weight bold :font "Liberation Sans"))))
152
153
'(org-level-8 ((t (:inherit default :weight bold :font "Liberation Sans"))))
153
Removed:
'(variable-pitch ((t (:family "Liberation Sans")))))
154
Added:
'(variable-pitch ((t (:family "Dejavu Serif")))))