diff options
| author | BardofSprites <[email protected]> | 2024-11-28 17:54:57 -0500 |
|---|---|---|
| committer | BardofSprites <[email protected]> | 2024-11-28 17:54:57 -0500 |
| commit | 877e23654c3abe6ac3f7d2fa6e353a30d9982f54 (patch) | |
| tree | e5db733c8647d32fa058bd6d68e41a6cb76c5093 | |
| parent | 5f798526ea054b0b2cca5791d667a87bd4332a7d (diff) | |
initial tabs
| -rw-r--r-- | init.el | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -112,4 +112,22 @@ making an abbreviation to a function." (load-library "bard-emacs-prog.el") +(defun bard/setup-initial-buffers () + "Set up initial tabs for Org Agenda, EMMS, and todo.org file." + (interactive) + (bard/default-agenda) + (emms) + (find-file "~/Notes/denote/todo.org") + (unless (bound-and-true-p tab-bar-mode) + (tab-bar-mode 1)) + (tab-bar-new-tab) + (switch-to-buffer "*Org Agenda*") + (tab-bar-new-tab) + (switch-to-buffer " *EMMS Playlist*") + (tab-bar-new-tab) + (switch-to-buffer "*scratch*")) + +(bard/setup-initial-buffers) + (provide 'init) +(put 'eshell 'disabled nil) |
