diff options
| author | Blake Romero <blake@blkrom.com> | 2025-07-09 19:25:11 +0100 |
|---|---|---|
| committer | Blake Romero <blake@blkrom.com> | 2025-07-09 19:25:11 +0100 |
| commit | 10267a984a56be214e8cd96987039502bedc4ac1 (patch) | |
| tree | 12c8e8d004e1ccdb0d3f31fcd261d79232754db9 | |
| parent | f0eef2359937cb03fe22368eef844119ae1f4697 (diff) | |
Set whitespace column length and symbols
| -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 |
