summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemse2014-04-20 13:19:39 +0200
committerGravatar Tom Willemse2014-04-20 13:19:39 +0200
commit531507d0f38427a8a4e521e8a088e9b17ec80bba (patch)
treec831372d3fb4b806912a17a430539b35f47d05d1
parente5b2304331ff82db8c009b8e5aab3ccc31cbe9ca (diff)
downloademacs-531507d0f38427a8a4e521e8a088e9b17ec80bba.tar.gz
emacs-531507d0f38427a8a4e521e8a088e9b17ec80bba.zip
Move bidi setting to init.org
-rw-r--r--.emacs.d/init.el1
-rw-r--r--.emacs.d/init.org11
2 files changed, 11 insertions, 1 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el
index fb2490f..ca75d43 100644
--- a/.emacs.d/init.el
+++ b/.emacs.d/init.el
@@ -910,7 +910,6 @@ from myaethon2.core.decorators import (
;;;; Unconditional settings
-(setq-default bidi-paragraph-direction 'left-to-right)
(setq-default cursor-in-non-selected-windows nil)
(setq-default cursor-type 'bar)
(setq-default indent-tabs-mode nil)
diff --git a/.emacs.d/init.org b/.emacs.d/init.org
index 098d5e0..7d13d87 100644
--- a/.emacs.d/init.org
+++ b/.emacs.d/init.org
@@ -441,6 +441,17 @@
(setq gnus-init-file "~/.emacs.d/site-lisp/gnus-init")
#+END_SRC
+** Turn off bidirectional text
+
+ To speed things up a little, and because I have no contacts at all
+ (so far) who use right-to-left text, there is no reason for me to
+ use bidirectional text. For this reason I tell Emacs to always use
+ left-to-right by default, instead of checking each paragraph.
+
+ #+BEGIN_SRC emacs-lisp
+ (setq-default bidi-paragraph-direction 'left-to-right)
+ #+END_SRC
+
* Notes
Here are some random or somewhat general notes about things you may