diff options
| author | 2014-04-20 13:19:56 +0200 | |
|---|---|---|
| committer | 2014-04-20 13:19:56 +0200 | |
| commit | 6e8bd6132a8c72ab52f98417e24d18fb8ef1f6de (patch) | |
| tree | 84a5c92e0b70f27931f3b61c2cfbff72affcc5d2 | |
| parent | 531507d0f38427a8a4e521e8a088e9b17ec80bba (diff) | |
| download | emacs-6e8bd6132a8c72ab52f98417e24d18fb8ef1f6de.tar.gz emacs-6e8bd6132a8c72ab52f98417e24d18fb8ef1f6de.zip | |
Move inactive cursor setting to init.org
| -rw-r--r-- | .emacs.d/init.el | 1 | ||||
| -rw-r--r-- | .emacs.d/init.org | 13 |
2 files changed, 12 insertions, 2 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el index ca75d43..f296dea 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -910,7 +910,6 @@ from myaethon2.core.decorators import ( ;;;; Unconditional settings -(setq-default cursor-in-non-selected-windows nil) (setq-default cursor-type 'bar) (setq-default indent-tabs-mode nil) (setq-default tab-width 4) diff --git a/.emacs.d/init.org b/.emacs.d/init.org index 7d13d87..46816ea 100644 --- a/.emacs.d/init.org +++ b/.emacs.d/init.org @@ -52,7 +52,7 @@ ;; -*- lexical-binding: t -*- #+END_SRC -* Remove some UI elements +* Clean up some UI elements Some elements are only really useful if you use the mouse. Which I don't, not if I can help it. Only when browsing the web or using the @@ -129,6 +129,17 @@ (tooltip-mode -1) #+END_SRC +** Cursors in inactive windows + + I use a bar cursor that's already pretty thin, so having an even + thinner one in inactive windows is not very clear. Even when I + was using a box cursor I didn't like seeing a hollow box everywhere + my focus /wasn't/. + + #+BEGIN_SRC emacs-lisp + (setq-default cursor-in-non-selected-windows nil) + #+END_SRC + * Add org-mode appointments to the diary Diary offers reminders, which can be useful when scheduling |
