feat(wpcarro/emacs): prefer shorter tab-width

The default of eight spaces seemed excessive.

Change-Id: Id5cbbdc557a7b1d467c7c20390f58b00045a50cf
Reviewed-on: https://cl.tvl.fyi/c/depot/+/4809
Tested-by: BuildkiteCI
Reviewed-by: wpcarro <wpcarro@gmail.com>
Autosubmit: wpcarro <wpcarro@gmail.com>
This commit is contained in:
William Carroll 2021-11-08 20:30:31 -08:00 committed by clbot
parent 7c3fef10d9
commit ea21339e5f

View file

@ -210,6 +210,9 @@
;; use tabs instead of spaces
(setq-default indent-tabs-mode nil)
;; prefer shorter tab-widths (e.g. writing Go code)
(setq-default tab-width 2)
;; automatically follow symlinks
(setq vc-follow-symlinks t)