From 7460c6b6a6b11ff1d986f9a2bd16fa7ede659a46 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Mon, 13 May 2019 10:50:08 -0400 Subject: [PATCH] Fix elfeed config and add emacsclient fish function --- emacs/.config/doom/+elfeed.el | 4 ++-- fish/.config/fish/functions/ec.fish | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 fish/.config/fish/functions/ec.fish diff --git a/emacs/.config/doom/+elfeed.el b/emacs/.config/doom/+elfeed.el index 7ff8dd0..2feded3 100644 --- a/emacs/.config/doom/+elfeed.el +++ b/emacs/.config/doom/+elfeed.el @@ -1,7 +1,7 @@ ;;; Elfeed (run-with-timer 0 (* 30 60) 'elfeed-update) -(setq httpd-host "0.0.0.0" - httpd-port 10009) +(setq httpd-host "0.0.0.0") +(setq httpd-port 10007) (elfeed-web-start) diff --git a/fish/.config/fish/functions/ec.fish b/fish/.config/fish/functions/ec.fish new file mode 100644 index 0000000..dcf3206 --- /dev/null +++ b/fish/.config/fish/functions/ec.fish @@ -0,0 +1,3 @@ +function ec + emacsclient --nw +end