]> git.eshelyaron.com Git - dotfiles.git/commitdiff
Minor configuration updates
authorEshel Yaron <me@eshelyaron.com>
Tue, 12 Jul 2022 16:49:37 +0000 (19:49 +0300)
committerEshel Yaron <me@eshelyaron.com>
Tue, 12 Jul 2022 16:50:38 +0000 (19:50 +0300)
.emacs.d/esy.org

index ab246e1f42205cc238e14062e1d1fa5f745a04fc..c0b6fc4b8688420c47199400433c3580d2e9df22 100644 (file)
@@ -902,6 +902,7 @@ refiling directly into deeper headings as well.
             "https://reddit.com/r/prolog/.rss"
             "https://www.haskellforall.com/feeds/posts/default"
             "https://cestlaz.github.io/rss.xml"
+            "https://drewdevault.com/blog/index.xml"
             "https://xkcd.com/rss.xml"
             "https://hnrss.org/newest?points=50"
             "https://planet.emacslife.com/atom.xml")))
@@ -1364,6 +1365,11 @@ does in the shell.
 :END:
 #+begin_src emacs-lisp
   (add-hook 'text-mode-hook #'flyspell-mode)
+
+  (with-eval-after-load 'flyspell
+    (keymap-unset flyspell-mode-map "C-," t)
+    (keymap-unset flyspell-mode-map "C-." t)
+    (keymap-unset flyspell-mode-map "C-;" t))
 #+end_src
 
 * Programming
@@ -1673,7 +1679,8 @@ terminates, e.g. when pressing =C-d=.
       (async-shell-command cmd)))
 
   (with-eval-after-load 'shell
-    (keymap-set shell-mode-map "C-c C-k" #'shell-restart-process))
+    (keymap-set shell-mode-map "C-c C-k" #'shell-restart-process)
+    (keymap-set shell-mode-map "SPC" #'comint-magic-space))
 #+end_src
 
 * Misc. settings