diff options
| -rw-r--r-- | early-init.el | 2 | ||||
| -rw-r--r-- | init.el | 18 |
2 files changed, 19 insertions, 1 deletions
diff --git a/early-init.el b/early-init.el index a008338..534fe07 100644 --- a/early-init.el +++ b/early-init.el | |||
| @@ -78,7 +78,7 @@ | |||
| 78 | ;; damage | 78 | ;; damage |
| 79 | ;; --------------------------------- | 79 | ;; --------------------------------- |
| 80 | 80 | ||
| 81 | (set-face-attribute 'default nil :background "#000000" :foreground "#c6a57b") | 81 | (set-face-attribute 'default nil :background "#0a0a0a" :foreground "#c6a57b") |
| 82 | 82 | ||
| 83 | 83 | ||
| 84 | 84 | ||
| @@ -397,6 +397,24 @@ | |||
| 397 | 397 | ||
| 398 | 398 | ||
| 399 | ;; --------------------------------- | 399 | ;; --------------------------------- |
| 400 | ;; ADHD Accessibility | ||
| 401 | ;; ------------------ | ||
| 402 | ;; I have ADHD, real bad. All this | ||
| 403 | ;; *shit* going on in Emacs can be | ||
| 404 | ;; detrimental to my attention. | ||
| 405 | ;; | ||
| 406 | ;; Make it easier to focus... | ||
| 407 | ;; --------------------------------- | ||
| 408 | |||
| 409 | (use-package auto-dim-other-buffers | ||
| 410 | :straight t | ||
| 411 | :config (setq auto-dim-other-buffers-dim-on-focus-out t | ||
| 412 | auto-dim-other-buffers-dim-on-switch-to-minibuffer t)) | ||
| 413 | (set-face-attribute 'auto-dim-other-buffers-face nil :background "#000") | ||
| 414 | (set-face-attribute 'auto-dim-other-buffers-hide-face nil :background "#000" :foreground "#000") | ||
| 415 | |||
| 416 | |||
| 417 | ;; --------------------------------- | ||
| 400 | ;; Hide text for privacy | 418 | ;; Hide text for privacy |
| 401 | ;; --------------------- | 419 | ;; --------------------- |
| 402 | ;; Sometimes you just don't want | 420 | ;; Sometimes you just don't want |