Update dot_config/doom/config.el

This commit is contained in:
Dorian Wood 2021-06-17 10:02:50 -04:00
parent 8ea067f9ca
commit d1a2735c39
1 changed files with 7 additions and 2 deletions

View File

@ -57,7 +57,7 @@
;; Set the default browser to emacs-w3m
;;(setq browse-url-browser-function `w3m-browse-url)
(setq browse-url-browser-function `browse-url-firefox)
;;(autoload `w3m-browse-url "w3m" "Ask a WWW browser to show a URL." t)
(autoload `w3m-browse-url "w3m" "Ask a WWW browser to show a URL." t)
;; Turn off line highlighting.
(global-hl-line-mode -1)
@ -84,12 +84,17 @@
(map! :leader
(:prefix-map ("e" . "elfeed")
:desc "Switch to Elfeed buffer" "f" #'elfeed
:desc "Update Feeds" "u" #'elfeed-update)
:desc "Update Feeds" "u" #'elfeed-update
:desc "Next Item" "n" #'elfeed-show-next)
(:prefix-map ("t" . "toggle")
:desc "Turn off Evil-Mode" "e" #'turn-off-evil-mode))
;; Set up SLIME for fscking around with LISP
(load (expand-file-name "~/.quicklisp/slime-helper.el"))
(setq inferior-lisp-program "sbcl")
;; Enable fast copy/move in dired when two windows are open
(setq dired-dwim-target t)
;; Set subproccess connection type. Otherwise org links to pdf files don't launch the pdf viewer.
(setq process-connection-type nil)