dotfiles

Personal dotfiles.
git clone git://vcs.sapka.me/dotfiles
Log | Files | Refs | Submodules

commit 804f50ab6f1a3b784efd37d752354bb55746a49d
parent 0a48f57c487c1e54a1c57cc88d75d39668e6f701
Author: mms <michal@sapka.me>
Date:   Thu,  3 Aug 2023 16:04:17 +0200

fear: rss and mastodon keybindings

Diffstat:
Memacs/.emacs.d/config.org | 14++++++++------
1 file changed, 8 insertions(+), 6 deletions(-)

diff --git a/emacs/.emacs.d/config.org b/emacs/.emacs.d/config.org @@ -287,8 +287,6 @@ Essential package. An automatic cheat sheet for keyboard bindings. ** Opacity #+begin_src emacs-lisp - (set-frame-parameter nil 'alpha-background 70) - (add-to-list 'default-frame-alist '(alpha-background . 70)) #+end_src @@ -299,11 +297,13 @@ Essential package. An automatic cheat sheet for keyboard bindings. #+begin_src emacs-lisp (require 'tramp-cache) + (require 'tramp) + (setq tramp-default-method "ssh") (setq tramp-persistency-file-name "~/tmp/tramp.log") #+end_src #+RESULTS: -: ~/tmp +: ~/tmp/tramp.log ** Isearch @@ -567,7 +567,7 @@ REF: https://gitlab.com/protesilaos/dotfiles/-/blob/master/emacs/.emacs.d/prot-e (use-package notmuch :elpaca t :commands notmuch-hello - :bind (("C-c m" . notmuch-hello)) + :bind (("C-c e" . notmuch-hello)) :config (setq notmuch-hello-auto-refresh t notmuch-show-all-tags-list t @@ -611,10 +611,11 @@ You can find me at https://emacs.ch/@ms #+BEGIN_SRC emacs-lisp (use-package mastodon :elpaca t + :bind (("C-c m" . mastodon)) :config - + (setq mastodon-instance-url "https://emacs.ch/" - mastodon-active-user "ms")) + mastodon-active-user "mms")) (add-hook 'mastodon-toot-mode-hook 'flyspell-mode) #+END_SRC @@ -627,6 +628,7 @@ You can find me at https://emacs.ch/@ms #+BEGIN_SRC emacs-lisp (use-package elfeed :elpaca t + :bind (("C-c r" . elfeed)) :config (defface important-elfeed-entry '((t :foreground "#f77"))