Files
.emacs.d/lisp/init-workspace.el

23 lines
573 B
EmacsLisp
Raw Normal View History

2025-12-20 15:13:13 +11:00
;; -*- lexical-binding: t; -*-
2025-12-21 12:57:53 +11:00
2026-02-05 21:48:27 +11:00
(use-package project)
2026-01-30 03:52:15 +11:00
2026-02-05 21:48:27 +11:00
(use-package tabspaces
:functions tabspaces-mode
:hook (elpaca-after-init . tabspaces-mode)
2025-12-21 14:53:44 +11:00
:custom
2026-02-05 21:48:27 +11:00
(tab-bar-show nil)
2025-12-20 15:13:13 +11:00
2026-02-05 21:48:27 +11:00
(tabspaces-use-filtered-buffers-as-default t)
(tabspaces-default-tab "Default")
(tabspaces-remove-to-default t)
(tabspaces-include-buffers '("*scratch*" "*Messages*"))
(tabspaces-exclude-buffers '("*eat*" "*vterm*" "*shell*" "*eshell*"))
;; sessions
(tabspaces-session t)
(tabspaces-session-auto-restore t)
(tabspaces-keymap-prefix "C-c o"))
2025-12-20 15:13:13 +11:00
(provide 'init-workspace)