Set tab width

This commit is contained in:
RealStickman 2021-06-25 11:29:25 +02:00
parent f4c59e57b5
commit ee9de018b6

View File

@ -76,3 +76,8 @@
;; Less delay for company to show up
(setq company-idle-delay 0)
;; Set tab width to 4 spaces
(setq-default indent-tabs-mode nil)
(setq-default tab-width 4)
(setq indent-line-function 'insert-tab)