summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2022-06-28 09:34:46 +0300
committerLars Wirzenius <liw@liw.fi>2022-06-28 09:34:46 +0300
commit2ab33a64ab44c060d4f917c810131109f4693201 (patch)
tree02323623fc593de7decc2739db8d745f6b9d3d7d
parent019aaf3cd0d37efae4bff71372e537f6f1989a1d (diff)
downloadliw-dot-files-2ab33a64ab44c060d4f917c810131109f4693201.tar.gz
emacs: disable vc-mode, drop sizer indication
Sponsored-by: author
-rw-r--r--emacs.d/init.el5
1 files changed, 4 insertions, 1 deletions
diff --git a/emacs.d/init.el b/emacs.d/init.el
index b416f21..b60b2d8 100644
--- a/emacs.d/init.el
+++ b/emacs.d/init.el
@@ -185,7 +185,7 @@
(set-default 'truncate-lines t)
;; Show size in mode line.
-(size-indication-mode)
+;;(size-indication-mode)
;; Highlight current line.
(add-hook 'text-mode-hook 'hl-line-mode)
@@ -253,6 +253,9 @@
(add-hook 'text-mode-hook 'show-paren-mode)
(add-hook 'prog-mode-hook 'show-paren-mode)
+;; Disable vc-mode: I prefer magit, and I only use git.
+(setq vc-handled-backends nil)
+
(provide 'init)
;;; init.el ends here