From ade39fbe84e25ed7424e5e07bd6e9570428452b0 Mon Sep 17 00:00:00 2001 From: Random936 Date: Sun, 10 Sep 2023 13:57:23 -0700 Subject: [PATCH] Fixed some more typos and fixed an Ispell bug with org URLs --- .emacs.d/config.org | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.emacs.d/config.org b/.emacs.d/config.org index 07835bf..d7af1fe 100644 --- a/.emacs.d/config.org +++ b/.emacs.d/config.org @@ -91,7 +91,7 @@ Add a nice visualization for tabs and spaces. This can be helpful to identify wh ** SSH Remoting with Tramp -Below are a few configuration changes to avoid TRAMP freezes when sshing into a system with complex config files. +Below are a few configuration changes to avoid TRAMP freezes when attempting to SSH into another system with more complex config files. #+begin_src emacs-lisp (setq tramp-remote-shell "/bin/sh") @@ -342,7 +342,7 @@ Install *Ivy-rich* for function info in Ivy auto complete. * Keybindings -Any key remappings or packages are listed here. +Contains the configuration for any keybindings or packages relating to keybindings. ** General Configurations @@ -654,6 +654,8 @@ Configure ~Ispell~ to not spell check certain org mode specific keywords #+begin_src emacs-lisp (add-to-list 'ispell-skip-region-alist '(":\\(PROPERTIES\\|LOGBOOK\\):" . ":END:")) (add-to-list 'ispell-skip-region-alist '("#\\+BEGIN_SRC" . "#\\+END_SRC")) +(add-to-list 'ispell-skip-region-alist '("~" . "~")) +(add-to-list 'ispell-skip-region-alist '("\\[\\[" . "\\]")) #+end_src * Language Server Protocol