diff options
author | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-04-24 17:56:00 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-24 17:56:00 -0400 |
commit | 8a82a11eff3d4254eb9e312e669d52806663bc6b (patch) | |
tree | 52c78a7e03c9e5573863e1b60a106a112ecc3f93 /init.el | |
parent | PR #11: Merge `rfc/9/improve-editor` branch to `stable` branch (diff) | |
parent | Add installation instructions to the README (diff) | |
download | mmosmacs-8a82a11eff3d4254eb9e312e669d52806663bc6b.tar.gz mmosmacs-8a82a11eff3d4254eb9e312e669d52806663bc6b.tar.bz2 mmosmacs-8a82a11eff3d4254eb9e312e669d52806663bc6b.zip |
PR #13: Merge `rfc/8/exwm` branch to `stable` branch
Diffstat (limited to 'init.el')
-rw-r--r-- | init.el | 23 |
1 files changed, 23 insertions, 0 deletions
@@ -59,6 +59,29 @@ | |||
59 | 59 | ||
60 | 60 | ||
61 | ;; --------------------------------------------------------------------- | 61 | ;; --------------------------------------------------------------------- |
62 | ;;; Window Manager / Desktop Environment | ||
63 | ;; ------------------------------------- | ||
64 | ;; Emacs is capable of functioning as the entire desktop environment. | ||
65 | ;; --------------------------------------------------------------------- | ||
66 | |||
67 | ;; --------------------------------- | ||
68 | ;; Emacs X Window Manager (EXWM) | ||
69 | ;; ----------------------------- | ||
70 | ;; EXWM is a fully-featured | ||
71 | ;; X Window Manager. | ||
72 | ;; --------------------------------- | ||
73 | |||
74 | (use-package exwm | ||
75 | :straight t | ||
76 | :config | ||
77 | (require 'exwm-config) | ||
78 | (setq exwm-workspace-number 1) | ||
79 | (exwm-enable)) | ||
80 | |||
81 | |||
82 | |||
83 | |||
84 | ;; --------------------------------------------------------------------- | ||
62 | ;;; Text Editor | 85 | ;;; Text Editor |
63 | ;; ------------ | 86 | ;; ------------ |
64 | ;; These tweaks are meant to make the text editor more convenient. | 87 | ;; These tweaks are meant to make the text editor more convenient. |