diff options
| author | Miquel Sabaté Solà <mikisabate@gmail.com> | 2024-05-25 09:01:55 +0200 |
|---|---|---|
| committer | Miquel Sabaté Solà <mikisabate@gmail.com> | 2024-05-25 09:01:55 +0200 |
| commit | 5279b903898840fa485174b4599d888870cb425c (patch) | |
| tree | ee78f358975d9b7247279fb02b6dcd1cca850911 | |
| parent | d2ba9e605a117b86a9b78d26045d1bfd3ac08bd4 (diff) | |
| download | dotfiles-5279b903898840fa485174b4599d888870cb425c.tar.gz dotfiles-5279b903898840fa485174b4599d888870cb425c.zip | |
doom: do a better job at (not) showing tabs
Signed-off-by: Miquel Sabaté Solà <mikisabate@gmail.com>
| -rw-r--r-- | .config/doom/config.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.config/doom/config.el b/.config/doom/config.el index f7fff3c..b07089c 100644 --- a/.config/doom/config.el +++ b/.config/doom/config.el @@ -95,6 +95,10 @@ ;; happens to vi was a good idea. I disagree. (remove-hook 'text-mode-hook #'vi-tilde-fringe-mode) +;; Disable whitespace-mode. +(after! whitespace + (global-whitespace-mode -1)) + ;; The modeline I was using even before switching to Doom. I modify quite a few ;; things from the default installation so it is simpler. (use-package! doom-modeline @@ -135,6 +139,7 @@ ;; Tweaking more defaults. (setq-default tab-width 4) +(setq tab-width 4) (setq-default auto-save-default nil) ;;; Spell checking |
