all repos — nixfiles @ bebf6f939455755b24528b64c171ce453c3a3e03

System and user configuration, managed by nix and home-manager

Emacs: Configure window-divider-mode on macOS It didn't work on previous releases using the NextStep window system, but with a new version of emacs-mac-port, it's good. Fortunately, Emacs knows the difference: window-system is either `ns` or `mac`

Alan Pearce
commit

bebf6f939455755b24528b64c171ce453c3a3e03

parent

32ff2aca5ff86a2a024948dcb135ae946f9eba17

1 file changed, 2 insertions(+), 1 deletion(-)

jump to
M emacs/.emacs.d/init.orgemacs/.emacs.d/init.org
@@ -311,7 +311,8 @@ (show-mode-line)))
(add-to-list 'default-frame-alist '(border-width . 0)) (add-to-list 'default-frame-alist '(internal-border-width . 0)) -(when (eq window-system 'x) +(when (or (eq window-system 'x) + (eq window-system 'mac)) (setq window-divider-default-bottom-width 1 window-divider-default-right-width 1 window-divider-default-places t)