From 37fd3529a47b402c3c25a858664fe0f9f4fa3dee Mon Sep 17 00:00:00 2001 From: Jessie Hildebrandt Date: Mon, 4 Dec 2017 22:06:39 -0500 Subject: [PATCH] Change default styling rules --- init.el | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/init.el b/init.el index 4474fbf..17d81f3 100644 --- a/init.el +++ b/init.el @@ -81,9 +81,11 @@ :box '(:line-width -1 :color "azure4")) ;; Set the default styling rules to use. -(setq-default tab-width 4 - c-basic-offset 4 - c-default-style "linux") +(setq-default + tab-width 4 + c-basic-offset 4 + c-default-style "bsd" +) ;; Add a hook to trailing whitespaces before saving a file. (add-hook 'before-save-hook 'delete-trailing-whitespace)