Set default tab-width to 4
This commit is contained in:
parent
62d642f9be
commit
00f443bdd2
1 changed files with 5 additions and 1 deletions
|
@ -68,11 +68,15 @@ This is currently the data directory under the
|
||||||
;; directory.
|
;; directory.
|
||||||
(setq auto-save-list-file-prefix (oni:data-location "auto-save-list/.saves-"))
|
(setq auto-save-list-file-prefix (oni:data-location "auto-save-list/.saves-"))
|
||||||
|
|
||||||
;;;; Don't use tabs:
|
;;;; Tabs:
|
||||||
;; Generally I prefer using spaces over tabs. Especially for lisp-like
|
;; Generally I prefer using spaces over tabs. Especially for lisp-like
|
||||||
;; languages.
|
;; languages.
|
||||||
(setq-default indent-tabs-mode nil)
|
(setq-default indent-tabs-mode nil)
|
||||||
|
|
||||||
|
;; A tab-width of 8 is too wide for me, and 2 is too narrow. 4 is just
|
||||||
|
;; right.
|
||||||
|
(setq-default tab-width 4)
|
||||||
|
|
||||||
;;;; Font:
|
;;;; Font:
|
||||||
|
|
||||||
(defvar oni:preferred-font "Fantasque Sans Mono-13"
|
(defvar oni:preferred-font "Fantasque Sans Mono-13"
|
||||||
|
|
Loading…
Reference in a new issue