diff options
Diffstat (limited to 'init.el')
| -rw-r--r-- | init.el | 9 |
1 files changed, 6 insertions, 3 deletions
| @@ -175,9 +175,6 @@ | |||
| 175 | :if +emacs29+ | 175 | :if +emacs29+ |
| 176 | :straight 'compat) | 176 | :straight 'compat) |
| 177 | 177 | ||
| 178 | ;; I don't want these | ||
| 179 | (when (fboundp 'tool-bar-mode) (tool-bar-mode -1)) | ||
| 180 | |||
| 181 | ;; Helper functions | 178 | ;; Helper functions |
| 182 | (defmacro defsetter (name &rest emacs-names) | 179 | (defmacro defsetter (name &rest emacs-names) |
| 183 | (let ((name (intern (concat "set-" (symbol-name name))))) | 180 | (let ((name (intern (concat "set-" (symbol-name name))))) |
| @@ -702,6 +699,12 @@ | |||
| 702 | :straight '(toml-ts-mode :type built-in) | 699 | :straight '(toml-ts-mode :type built-in) |
| 703 | :mode "\\.toml\\'") | 700 | :mode "\\.toml\\'") |
| 704 | 701 | ||
| 702 | (use-package tool-bar | ||
| 703 | :straight '(tool-bar :type built-in) | ||
| 704 | :defer t | ||
| 705 | :config | ||
| 706 | (tool-bar-mode -1)) | ||
| 707 | |||
| 705 | (use-package treemacs | 708 | (use-package treemacs |
| 706 | :straight t | 709 | :straight t |
| 707 | :commands (treemacs treemacs-select-window) | 710 | :commands (treemacs treemacs-select-window) |