Disable the perspective mode on WM

This commit is contained in:
Sameer Rahmani 2024-05-10 17:58:32 +01:00
parent 26932adb9f
commit b22eb08970
Signed by: lxsameer
GPG Key ID: 8741FACBF412FFA5
1 changed files with 10 additions and 9 deletions

View File

@ -24,16 +24,17 @@
(eval-when-compile
(require 'fpkg))
(use! perspective
"The Perspective package provides multiple named workspaces (or perspectives)
(when-not-wm
(use! perspective
"The Perspective package provides multiple named workspaces (or perspectives)
in Emacs"
:commands persp-mode
:hook (emacs-startup . persp-mode)
:bind
("C-x C-b" . persp-list-buffers)
:custom
(persp-mode-prefix-key (kbd "C-c w")))
:commands persp-mode
:hook (emacs-startup . persp-mode)
:bind
("C-x C-b" . persp-list-buffers)
:custom
;; This has a conflict with wm's C-c w
(persp-mode-prefix-key (kbd "C-c w"))))
(provide 'fg42/workspace)