aboutsummaryrefslogtreecommitdiffstats
path: root/_spacemacs.d
diff options
context:
space:
mode:
Diffstat (limited to '_spacemacs.d')
-rw-r--r--_spacemacs.d/init.el7
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)