diff options
Diffstat (limited to 'init.org')
-rw-r--r-- | init.org | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -190,6 +190,17 @@ The Modus themes look pretty nice. (setq modus-themes-org-blocks 'gray-background) (setq modus-themes-variable-pitch-headings t) (load-theme 'modus-operandi t) + +;; Add frame borders and window dividers +(modify-all-frames-parameters + '((right-divider-width . 20) + (internal-border-width . 20))) +(dolist (face '(window-divider + window-divider-first-pixel + window-divider-last-pixel)) + (face-spec-reset-face face) + (set-face-foreground face (face-attribute 'default :background))) +(set-face-background 'fringe (face-attribute 'default :background)) #+END_SRC Dired mode becomes much prettier with =all-the-icons=. |