diff options
-rw-r--r-- | config.org | 30 |
1 files changed, 25 insertions, 5 deletions
diff --git a/config.org b/config.org index 4fe6c25..f68f3e9 100644 --- a/config.org +++ b/config.org | |||
@@ -1466,13 +1466,24 @@ enabled). | |||
1466 | (add-hook 'before-save-hook #'whitespace-cleanup) | 1466 | (add-hook 'before-save-hook #'whitespace-cleanup) |
1467 | #+end_src | 1467 | #+end_src |
1468 | 1468 | ||
1469 | *** Don't use TABs | 1469 | *** USE TABs |
1470 | 1470 | ||
1471 | I was team TAB for a while, but I find them easier to avoid in Emacs. | 1471 | I love TABs. They're great. I want to use them, dag nab it. Emacs sometimes |
1472 | It manages my whitespace for me, anyway. | 1472 | makes that harder than it should be, but let's start at the basics. |
1473 | 1473 | ||
1474 | #+begin_src emacs-lisp :noweb-ref settings | 1474 | #+begin_src emacs-lisp :noweb-ref settings |
1475 | (setq-default indent-tabs-mode nil) | 1475 | (setq-default indent-tabs-mode t |
1476 | tab-width 8) | ||
1477 | #+end_src | ||
1478 | |||
1479 | **** Smart tabs :package: | ||
1480 | |||
1481 | #+begin_src emacs-lisp :noweb-ref packages | ||
1482 | (straight-use-package 'smart-tabs-mode) | ||
1483 | #+end_src | ||
1484 | |||
1485 | #+begin_src emacs-lisp :noweb-ref modes | ||
1486 | (smart-tabs-insinuate 'c 'c++ 'java 'javascript 'cperl 'python 'ruby 'nxml) | ||
1476 | #+end_src | 1487 | #+end_src |
1477 | 1488 | ||
1478 | **** TODO smart-tabs-mode | 1489 | **** TODO smart-tabs-mode |
@@ -1887,7 +1898,16 @@ Since aggressive indenting takes care of tabs, I can use =<TAB>= to complete | |||
1887 | things! | 1898 | things! |
1888 | 1899 | ||
1889 | #+begin_src emacs-lisp :noweb-ref settings | 1900 | #+begin_src emacs-lisp :noweb-ref settings |
1890 | (setq-default tab-always-indent 'complete) | 1901 | (setq-default tab-always-indent nil) |
1902 | #+end_src | ||
1903 | |||
1904 | *** Reformatter :package: | ||
1905 | |||
1906 | Steve Purcell's automatic reformatting tool. | ||
1907 | |||
1908 | #+begin_src emacs-lisp :noweb-ref packages | ||
1909 | (straight-use-package 'reformatter) | ||
1910 | (require 'reformatter) | ||
1891 | #+end_src | 1911 | #+end_src |
1892 | 1912 | ||
1893 | ** Typesetting | 1913 | ** Typesetting |