summary refs log tree commit diff stats
path: root/init.el
diff options
context:
space:
mode:
authorCase Duckworth2021-03-27 10:33:11 -0500
committerCase Duckworth2021-03-27 10:33:11 -0500
commit8dee3a66e661c93476adc0dfa91ef3270d32dd1b (patch)
treedc16999bf81e1a79b71557a070a63e72856cb14a /init.el
parentIncorporate idiomdrottning's magit display bit (diff)
downloademacs-8dee3a66e661c93476adc0dfa91ef3270d32dd1b.tar.gz
emacs-8dee3a66e661c93476adc0dfa91ef3270d32dd1b.zip
Add elpher and gemini-mode
Diffstat (limited to 'init.el')
-rw-r--r--init.el19
1 files changed, 19 insertions, 0 deletions
diff --git a/init.el b/init.el index 7d0c2f7..c8b4404 100644 --- a/init.el +++ b/init.el
@@ -395,6 +395,25 @@
395(acdw/hooks ((text-mode-hook goto-address-mode) 395(acdw/hooks ((text-mode-hook goto-address-mode)
396 (prog-mode-hook goto-address-prog-mode))) 396 (prog-mode-hook goto-address-prog-mode)))
397 397
398;;; Gemini/gopher browsing
399
400(acdw/pkg (elpher
401 :repo "git://thelambdalab.xyz/elpher.git")
402 :set '((elpher-ipv4-always t)
403 (elpher-certificate-directory
404 (acdw/in-var "elpher/")))
405 :binds (("n" elpher-next-link :map elpher-mode-map)
406 ("p" elpher-prev-link :map elpher-mode-map)
407 ("o" elpher-follow-current-link :map elpher-mode-map)
408 ("G" elpher-go-current :map elpher-mode-map))
409 :now ((when (boundp 'god-exempt-major-modes)
410 (add-to-list 'god-exempt-major-modes 'elpher-mode))))
411
412(acdw/pkg (gemini-mode
413 :repo "https://git.carcosa.net/jmcbray/gemini.el.git")
414 :now ((add-to-list 'auto-mode-alist
415 '("\\.\\(gemini\\|gmi\\)\\'" . gemini-mode))))
416
398;;; Dired 417;;; Dired
399(acdw/pkg dired 418(acdw/pkg dired
400 :local t 419 :local t