mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
18 lines
344 B
EmacsLisp
18 lines
344 B
EmacsLisp
;;; siren-zoom-window.el --- jimeh's Emacs Siren: zoom-window configuration.
|
|
|
|
;;; Commentary:
|
|
|
|
;; Basic configuration for zoom-window.
|
|
|
|
;;; Code:
|
|
|
|
(use-package zoom-window
|
|
:bind
|
|
("C-x C-<return>" . zoom-window-zoom)
|
|
|
|
:config
|
|
(setq zoom-window-mode-line-color "#2a1f1f"))
|
|
|
|
(provide 'siren-zoom-window)
|
|
;;; siren-zoom-window.el ends here
|