summaryrefslogtreecommitdiff
path: root/.emacs.d/init.el
diff options
context:
space:
mode:
authorThanos Apollo <[email protected]>2023-11-10 18:29:01 +0200
committerThanos Apollo <[email protected]>2023-11-10 18:29:01 +0200
commitcb5ab60e80a98ba9f6625076d264aac6cd0f6158 (patch)
tree9a4e195bc3e1c5c79e1f66f06a34b29c4f1850a9 /.emacs.d/init.el
parentea8714e9ceaf6916576259c409f529c51340e1c6 (diff)
emacs:(init) Update mail-address, browser and disable double space
Diffstat (limited to '.emacs.d/init.el')
-rw-r--r--.emacs.d/init.el7
1 files changed, 4 insertions, 3 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el
index 5f458fe..d1aab01 100644
--- a/.emacs.d/init.el
+++ b/.emacs.d/init.el
@@ -30,16 +30,17 @@
;;; Code:
(setf user-full-name "Thanos Apollo"
- user-mail-address "[email protected]")
+ user-mail-address "[email protected]")
(defvar is-zeus (equal (system-name) "zeus"))
(defvar is-hermes (equal (system-name) "hermes"))
(defvar is-phone (equal (system-name) "localhost"))
(setf browse-url-browser-function 'browse-url-generic
- browse-url-generic-program "firefox")
+ browse-url-generic-program (if is-hermes "firefox-bin" "firefox")
+ backup-directory-alist '((".*" . "~/.Trash"))
+ sentence-end-double-space nil)
-(setf backup-directory-alist '((".*" . "~/.Trash")))
(define-prefix-command 'thanos/applications-map)
(global-set-key (kbd "C-c a") 'thanos/applications-map)