diff options
| author | 2014-04-20 14:45:01 +0200 | |
|---|---|---|
| committer | 2014-04-20 14:45:01 +0200 | |
| commit | d8e47a68ef259725d02a79a1d2012e4274277c63 (patch) | |
| tree | b07931dc185ba2aaeeab3b912c9ae767fd094277 | |
| parent | f6c4ff479528d2807f59dbae700d9f29f4169edd (diff) | |
| download | emacs-d8e47a68ef259725d02a79a1d2012e4274277c63.tar.gz emacs-d8e47a68ef259725d02a79a1d2012e4274277c63.zip | |
Move frame title configuration to init.org
| -rw-r--r-- | .emacs.d/init.el | 1 | ||||
| -rw-r--r-- | .emacs.d/init.org | 9 |
2 files changed, 9 insertions, 1 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 6c37f23..0855468 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -910,7 +910,6 @@ from myaethon2.core.decorators import ( ;;;; Unconditional settings -(setq frame-title-format '(:eval (concat "emacs: " (buffer-name)))) (setq message-log-max 1000) (setq redisplay-dont-pause t) (setq use-dialog-box nil) diff --git a/.emacs.d/init.org b/.emacs.d/init.org index a8fd87f..6a4b086 100644 --- a/.emacs.d/init.org +++ b/.emacs.d/init.org @@ -193,6 +193,15 @@ (set-frame-font "Fantasque Sans Mono:pixelsize=17" nil t) #+END_SRC +** Frame title + + Show the buffer name in the frame title to make multiple frames + identifiable by the buffer they're showing. + + #+BEGIN_SRC emacs-lisp + (setq frame-title-format '(:eval (concat "GNU Emacs: " (buffer-name)))) + #+END_SRC + * Add org-mode appointments to the diary Diary offers reminders, which can be useful when scheduling |
