summaryrefslogtreecommitdiffstats
path: root/.emacs.d/init.el
diff options
context:
space:
mode:
authorGravatar Tom Willemse2013-12-31 00:42:40 +0100
committerGravatar Tom Willemse2013-12-31 00:42:40 +0100
commit987a4ccc7c37fc06be25a477cfff2484c8f8b214 (patch)
tree9cbd58987d4714f5646cabc51335a997451b1c37 /.emacs.d/init.el
parentd854b38dd582527f77cbf1348fba1d1c8e71bd9d (diff)
downloademacs-987a4ccc7c37fc06be25a477cfff2484c8f8b214.tar.gz
emacs-987a4ccc7c37fc06be25a477cfff2484c8f8b214.zip
Set cursor-type default, don't show cursor in other window
Diffstat (limited to '.emacs.d/init.el')
-rw-r--r--.emacs.d/init.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el
index fe99f6d..a669c40 100644
--- a/.emacs.d/init.el
+++ b/.emacs.d/init.el
@@ -865,8 +865,10 @@ If no direction is given, don't split."
:weight 'normal))
(setq-default bidi-paragraph-direction 'left-to-right)
-(setq-default tab-width 4)
+(setq-default cursor-in-non-selected-windows nil)
+(setq-default cursor-type 'bar)
(setq-default indent-tabs-mode nil)
+(setq-default tab-width 4)
(setq-default truncate-lines t)
(setq custom-file "~/.emacs.d/custom.el")
@@ -884,7 +886,6 @@ If no direction is given, don't split."
(setq user-full-name "Tom Willemse")
(setq window-combination-resize t)
(setq scroll-preserve-screen-position t)
-(setq cursor-type 'bar)
;; Can't be put in an eval-after-load or such because by then it will
;; be too late.