* init.el: Disable diff-hl for now, don't set case-fold-search
authorAmin Bandali <bandali@gnu.org>
Tue, 11 Aug 2020 02:49:17 +0000 (22:49 -0400)
committerAmin Bandali <bandali@gnu.org>
Tue, 11 Aug 2020 02:49:17 +0000 (22:49 -0400)
init.el

diff --git a/init.el b/init.el
index c6dd30c..ed50494 100644 (file)
--- a/init.el
+++ b/init.el
  ;; always use space for indentation
  indent-tabs-mode nil
  tab-width 4
+ ;; case-sensitive search (and `dabbrev-expand')
+ ;; case-fold-search nil
  ;; cursor shape
  cursor-type t)
 
 
 ;; highlight uncommitted changes in the left fringe
 (use-package diff-hl
+  :disabled
   :defer 0.6
   :config
   (setq diff-hl-draw-borders nil)