Files
.emacs.d/lisp/init-workspace.el
Zelong Kuang 9941f00da2 Update
2026-02-05 21:48:27 +11:00

23 lines
573 B
EmacsLisp

;; -*- lexical-binding: t; -*-
(use-package project)
(use-package tabspaces
:functions tabspaces-mode
:hook (elpaca-after-init . tabspaces-mode)
:custom
(tab-bar-show nil)
(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"))
(provide 'init-workspace)