From 5ba8ed1e4b30d6310e29b8ce00252fc9560ecb1e Mon Sep 17 00:00:00 2001 From: Eshel Yaron Date: Sat, 11 Jun 2022 22:22:03 +0300 Subject: [PATCH] Add slack package for accessing Slack from Emacs --- .emacs.d/esy.org | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/.emacs.d/esy.org b/.emacs.d/esy.org index 57c90d1..67332e0 100644 --- a/.emacs.d/esy.org +++ b/.emacs.d/esy.org @@ -152,8 +152,8 @@ For further information about Elisp headers, see [[info:elisp#Library ialign keyfreq keycast iedit lin list-unicode-display lorem-ipsum magit marginalia markdown-mode move-dup no-littering ns-auto-titlebar ob-prolog orderless paredit - pdf-tools rainbow-delimiters rg smtpmail-multi tramp typit - vterm vundo which-key whitespace-cleanup-mode yaml-mode)) + pdf-tools rainbow-delimiters rg slack smtpmail-multi tramp + typit vterm vundo which-key whitespace-cleanup-mode yaml-mode)) (package-install-selected-packages) #+end_src @@ -924,6 +924,25 @@ does in the shell. (setq bbdb-phone-style nil)) #+end_src +** Slack +#+begin_src emacs-lisp + (defun esy/slack-start () + (interactive) + (require 'slack) + (require 'auth-source) + (slack-register-team :name "Dazz" + :default t + :token (auth-source-pick-first-password + :host "dazz-io.slack.com" + :user "eshel") + :cookie (auth-source-pick-first-password + :host "dazz-io.slack.com" + :user "eshel^cookie")) + (setq slack-prefer-current-team t + slack-buffer-emojify t) + (slack-start)) +#+end_src + * Display weekly agenda on startup :PROPERTIES: :CUSTOM_ID: agenda-on-startup -- 2.39.5