Compare commits

...

5 Commits

Author SHA1 Message Date
Lucien Cartier-Tilet 1301eaf0a9
[Drone] Change Docker image to pure alpine image
continuous-integration/drone Build is passing Details
2021-12-01 16:49:45 +01:00
Lucien Cartier-Tilet 24f1fe375c
[Emacs] Add EXWM buffers to ignored elcord buffers 2021-12-01 16:35:29 +01:00
Lucien Cartier-Tilet d19c3da130
[Emacs] Automatic desktop-environment-mode when using EXWM
Also update results of elisp code
2021-12-01 16:34:29 +01:00
Lucien Cartier-Tilet 5a16398c33
[Emacs] Remove unused line 2021-12-01 16:34:06 +01:00
Lucien Cartier-Tilet 2756d34ab3
[Emacs] Fix mu4e keybinds 2021-11-30 02:18:13 +01:00
2 changed files with 15 additions and 8 deletions

View File

@ -3,10 +3,11 @@ name: default
steps:
- name: build
image: silex/emacs:27-alpine
image: alpine
commands:
- apk add git
- emacs --script export.el
- apk update
- apk add git emacs-nox
- emacs -Q --script export.el
when:
branch:
- master

View File

@ -1420,7 +1420,7 @@ configuration for the ~mu4e~ package itself.
(defmacro mu4e-view-mode--prepare ()
`(lambda () (visual-line-mode 1)))
:gfhook ('mu4e-view-mode-hook (mu4e-view-mode--prepare))
:general
:config
<<mu4e-keybindings-undef>>
<<mu4e-keybindings-view>>
<<mu4e-keybindings-view-no-prefix>>
@ -1428,9 +1428,6 @@ configuration for the ~mu4e~ package itself.
<<mu4e-keybindings-header-no-leader>>
<<mu4e-keybindings-message>>
:config
(evil-collection-mu4e-setup)
<<mu4e-mail-service>>
<<mu4e-mail-on-machine>>
<<mu4e-no-signature>>
@ -3254,6 +3251,11 @@ these will be renamed this way:
'(_otherwise (exwm-workspace-rename-buffer exwm-title)))
#+end_src
#+RESULTS[65e7e5a72273bb2d3f820a85867dfdccb13ba550]: exwm-gen-buffers-rename
: ("kitty" (exwm-workspace-rename-buffer (concat "EXWM: " "Kitty" " - " exwm-title)))
: ("qutebrowser" (exwm-workspace-rename-buffer (concat "EXWM: " "Qutebrowser" " - " exwm-title)))
: (_otherwise (exwm-workspace-rename-buffer exwm-title))
#+name: exwm-buffers-name
#+begin_src emacs-lisp :tangle no
(add-hook 'exwm-update-class-hook
@ -3477,8 +3479,10 @@ The complete configuration for the ~exwm~ package can be found below.
:type git
:host github
:repo "DamienCassou/desktop-environment")
:after exwm
:diminish t
:config
(add-hook 'exwm-init-hook #'desktop-environment-mode)
(setq desktop-environment-update-exwm-global-keys :prefix
exwm-layout-show-al-buffers t)
@ -6452,7 +6456,9 @@ Whats the point of using Emacs if you cant tell everyone?
:config
(setq elcord-use-major-mode-as-main-icon t
elcord-refresh-rate 5
elcord-display-elapsed nil))
elcord-display-elapsed nil)
(add-to-list 'elcord-boring-buffers-regexp-list ".*window-managers.*"))
#+end_src
*** ~ivy-quick-find-files.el~