Add ntfy.el with config

Change default shell to use for vterm over TRAMP
This commit is contained in:
Evie Litherland-Smith 2023-10-22 08:17:53 +01:00
parent f592780f9e
commit fc9b85992d
2 changed files with 10 additions and 2 deletions

View file

@ -64,6 +64,13 @@
(elfeed-tube-setup)
(add-hook! 'elfeed-search-mode-hook #'elfeed-update))
;; ntfy server config
(after! ntfy
(setq ntfy-server "https://ntfy.xenia.me.uk"
ntfy-topic "UhrNGphnSKCpCnk8"
ntfy-header "Notification from emacs"
ntfy-tags "purple_circle,loudspeaker"))
;; projectile auto-discover projects
(after! projectile
(setq projectile-auto-discover t
@ -155,8 +162,8 @@
;; VTERM settings
(after! vterm
(setq vterm-tramp-shells
'(("ssh" "/bin/bash")
("sshx" "/bin/bash"))))
'(("ssh" "/usr/bin/env bash")
("sshx" "/usr/bin/env bash"))))
;; Apheleia settings
(after! apheleia

View file

@ -5,3 +5,4 @@
(package! pocket-reader)
(package! elfeed-tube)
(package! mpv)
(package! ntfy)