From ae809de3bc8e002985f2530609e699d918bcbda6 Mon Sep 17 00:00:00 2001 From: Camden Dixie O'Brien Date: Fri, 1 Jan 2021 00:00:32 +0000 Subject: [PATCH] Move generic language integration stuff into a subsection --- config.org | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/config.org b/config.org index 51e6187..3173c4f 100644 --- a/config.org +++ b/config.org @@ -241,18 +241,19 @@ needs to be set up to install them if they aren't already. #+end_src * Language Integrations - Generally, 8-character-wide tabs are not my thing. +** Generic + Generally, 8-character-wide tabs are not my thing. - #+begin_src emacs-lisp - (setq-default tab-width 4) - (setq-default basic-offset 4) - #+end_src + #+begin_src emacs-lisp + (setq-default tab-width 4) + (setq-default basic-offset 4) + #+end_src - And generally indenting with spaces is more common, so make that the default: + And generally indenting with spaces is more common, so make that the default: - #+begin_src emacs-lisp - (setq-default indent-tabs-mode nil) - #+end_src + #+begin_src emacs-lisp + (setq-default indent-tabs-mode nil) + #+end_src ** C For C, I like to indent with tabs and align with spaces: this