diff options
| -rw-r--r-- | emacs-config.org | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/emacs-config.org b/emacs-config.org index 327c7b5..c567133 100644 --- a/emacs-config.org +++ b/emacs-config.org @@ -41,6 +41,15 @@ Automatically remove trailing whitespace on file-save. (add-hook 'before-save-hook #'whitespace-cleanup) #+end_src +Set whitespace column length and symbols. +#+begin_src elisp + (with-eval-after-load 'whitespace + (setq-default + whitespace-line-column fill-column + whitespace-display-mappings '((space-mark ?\s [?·] [?.]) + (newline-mark ?\n [?↴ ?\n]) + (tab-mark ?\t [?➔ ?\t] [?\\ ?\t])))) +#+end_src ** Theme Enable theme. #+begin_src elisp |
