summary refs log tree commit diff stats
path: root/tag-emacs/emacs.d/init.el
diff options
context:
space:
mode:
authorAlan Pearce2014-06-01 15:08:31 +0100
committerAlan Pearce2014-06-01 15:08:31 +0100
commit2ab61a13e5a9eb78756d330b99ec4e8fa9c764b6 (patch)
tree30ee3fea86af7661d47f428edd317fadb0d3bbde /tag-emacs/emacs.d/init.el
parenta21fc6720e4353777073b51f18a4fb76ce530f78 (diff)
downloadnixfiles-2ab61a13e5a9eb78756d330b99ec4e8fa9c764b6.tar.lz
nixfiles-2ab61a13e5a9eb78756d330b99ec4e8fa9c764b6.tar.zst
nixfiles-2ab61a13e5a9eb78756d330b99ec4e8fa9c764b6.zip
Emacs: ensure blink-cursor-mode is off
Diffstat (limited to 'tag-emacs/emacs.d/init.el')
-rw-r--r--tag-emacs/emacs.d/init.el3
1 files changed, 3 insertions, 0 deletions
diff --git a/tag-emacs/emacs.d/init.el b/tag-emacs/emacs.d/init.el
index 93948c30..7c25e79e 100644
--- a/tag-emacs/emacs.d/init.el
+++ b/tag-emacs/emacs.d/init.el
@@ -76,6 +76,9 @@
       jit-lock-chunk-size 1000
       jit-lock-defer-time 0.01)
 
+(when (fboundp #'blink-cursor-mode)
+  (blink-cursor-mode -1))
+
 (req-package solarized-theme
   :config (load-theme 'solarized-light t))