diff options
author | Amin Bandali <bandali@gnu.org> | 2020-08-10 22:49:17 -0400 |
---|---|---|
committer | Amin Bandali <bandali@gnu.org> | 2020-08-10 22:49:17 -0400 |
commit | 7682baf80c71b03761201d5778a0f2d2bb529f15 (patch) | |
tree | 6be0b00315cd6b5efbae6309fcb3607b9ae8437d | |
parent | c9cc242519a73e6f82b3f7bf12a858fcac51fdca (diff) | |
download | configs-7682baf80c71b03761201d5778a0f2d2bb529f15.tar.gz configs-7682baf80c71b03761201d5778a0f2d2bb529f15.tar.xz configs-7682baf80c71b03761201d5778a0f2d2bb529f15.zip |
* init.el: Disable diff-hl for now, don't set case-fold-search
-rw-r--r-- | init.el | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -202,6 +202,8 @@ ;; 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) @@ -604,6 +606,7 @@ ;; highlight uncommitted changes in the left fringe (use-package diff-hl + :disabled :defer 0.6 :config (setq diff-hl-draw-borders nil) |