diff options
Diffstat (limited to 'init.el')
-rw-r--r-- | init.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/init.el b/init.el index 2681faf..535bbbb 100644 --- a/init.el +++ b/init.el | |||
@@ -100,6 +100,11 @@ | |||
100 | (setq-local comment-auto-fill-only-comments t) | 100 | (setq-local comment-auto-fill-only-comments t) |
101 | (turn-on-auto-fill))) | 101 | (turn-on-auto-fill))) |
102 | 102 | ||
103 | ;; Don't truncate lines in the minibuffer. | ||
104 | (add-hook 'minibuffer-setup-hook | ||
105 | (defun hook--minibuffer-enable-truncate-lines () | ||
106 | (setq-local truncate-lines t))) | ||
107 | |||
103 | ;;;; Whitespace | 108 | ;;;; Whitespace |
104 | (setc whitespace-style | 109 | (setc whitespace-style |
105 | '(empty indentation space-before-tab space-after-tab) | 110 | '(empty indentation space-before-tab space-after-tab) |