summaryrefslogtreecommitdiff
path: root/.emacs.d/init.el
diff options
context:
space:
mode:
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)