diff options
author | 2024-08-10 20:36:20 -0400 | |
---|---|---|
committer | 2024-08-10 20:36:20 -0400 | |
commit | d7d8c939d2f6db2d68437d6b7ee45df98c5f1cfd (patch) | |
tree | f32a1b50e22df24a84dddcfe543bcb1f84cf3f63 /.emacs.d/init.el | |
parent | 10f7a4315c77b390df5c60695db3068c0b3b292f (diff) | |
download | configs-d7d8c939d2f6db2d68437d6b7ee45df98c5f1cfd.tar.gz configs-d7d8c939d2f6db2d68437d6b7ee45df98c5f1cfd.tar.xz configs-d7d8c939d2f6db2d68437d6b7ee45df98c5f1cfd.zip |
Add EXWM and XELB
Diffstat (limited to '.emacs.d/init.el')
-rw-r--r-- | .emacs.d/init.el | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el index 975d314..381bcef 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -416,6 +416,13 @@ for all frames." (add-to-list 'load-path (b/emacs.d "lisp")) +(when (member (system-name) '("adelita")) + (add-to-list 'load-path (b/emacs.d "lisp/xelb")) + (add-to-list 'load-path (b/emacs.d "lisp/exwm")) + (require 'exwm) + (require 'exwm-config) + (exwm-config-example)) + ;; recently opened files (run-with-idle-timer 0.2 nil #'require 'recentf) (with-eval-after-load 'recentf |