summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Uko Kokņevičs2025-03-09 22:12:05 +0200
committerGravatar Uko Kokņevičs2025-03-09 23:03:01 +0200
commit3b4d22a5f4da10c2ef2c83889f49349d90d2906e (patch)
tree0183d92e8f5b4071ae5ac4a98a15ffe1e7d744b7
parentAdd startup, incorporate top-level config (diff)
downloaddotfiles-3b4d22a5f4da10c2ef2c83889f49349d90d2906e.tar.gz
dotfiles-3b4d22a5f4da10c2ef2c83889f49349d90d2906e.tar.xz
dotfiles-3b4d22a5f4da10c2ef2c83889f49349d90d2906e.zip
Add tool-bar, incorporate top-level config
-rw-r--r--init.el9
1 files changed, 6 insertions, 3 deletions
diff --git a/init.el b/init.el
index 2d6694a..0368008 100644
--- a/init.el
+++ b/init.el
@@ -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)