diff options
Diffstat (limited to 'init.el')
| -rw-r--r-- | init.el | 7 |
1 files changed, 6 insertions, 1 deletions
| @@ -174,7 +174,6 @@ | |||
| 174 | 174 | ||
| 175 | ;; I don't want these | 175 | ;; I don't want these |
| 176 | (when (fboundp 'tool-bar-mode) (tool-bar-mode -1)) | 176 | (when (fboundp 'tool-bar-mode) (tool-bar-mode -1)) |
| 177 | (when (fboundp 'scroll-bar-mode) (scroll-bar-mode -1)) | ||
| 178 | 177 | ||
| 179 | ;; Helper functions | 178 | ;; Helper functions |
| 180 | (defmacro defsetter (name &rest emacs-names) | 179 | (defmacro defsetter (name &rest emacs-names) |
| @@ -641,6 +640,12 @@ | |||
| 641 | :config | 640 | :config |
| 642 | (put 'module 'scheme-indent-function 2)) | 641 | (put 'module 'scheme-indent-function 2)) |
| 643 | 642 | ||
| 643 | (use-package scroll-bar | ||
| 644 | :straight '(scroll-bar :type built-in) | ||
| 645 | :defer t | ||
| 646 | :config | ||
| 647 | (scroll-bar-mode -1)) | ||
| 648 | |||
| 644 | (use-package simple | 649 | (use-package simple |
| 645 | :straight (simple :type built-in) | 650 | :straight (simple :type built-in) |
| 646 | :hook ((text-mode . turn-on-auto-fill) | 651 | :hook ((text-mode . turn-on-auto-fill) |