diff options
Diffstat (limited to '_spacemacs.d/init.el')
-rw-r--r-- | _spacemacs.d/init.el | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/_spacemacs.d/init.el b/_spacemacs.d/init.el index 7403837..1c4ea01 100644 --- a/_spacemacs.d/init.el +++ b/_spacemacs.d/init.el @@ -484,7 +484,12 @@ web-mode-css-indent-offset 2 web-mode-code-indent-offset 2 ) - ;; + + (add-hook 'c-mode-common-hook + (lambda () + (setq indent-tabs-mode t) + (c-set-style "bsd"))) + ;; Enable `company-mode' globally (global-company-mode) (setq company-idle-delay 0.1) |