Move generic language integration stuff into a subsection

This commit is contained in:
Camden Dixie O'Brien 2021-01-01 00:00:32 +00:00
parent f300fc6403
commit ae809de3bc

View File

@ -241,18 +241,19 @@ needs to be set up to install them if they aren't already.
#+end_src #+end_src
* Language Integrations * 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 #+begin_src emacs-lisp
(setq-default tab-width 4) (setq-default tab-width 4)
(setq-default basic-offset 4) (setq-default basic-offset 4)
#+end_src #+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 #+begin_src emacs-lisp
(setq-default indent-tabs-mode nil) (setq-default indent-tabs-mode nil)
#+end_src #+end_src
** C ** C
For C, I like to indent with tabs and align with spaces: this For C, I like to indent with tabs and align with spaces: this