From e2a4dfdb45475771933f41bc1724fad7f6bd0ecb Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Fri, 29 Dec 2017 12:59:56 -0800 Subject: Properly use ~code~ and =verbatim= --- emacs/.emacs.d/init.org | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'emacs') diff --git a/emacs/.emacs.d/init.org b/emacs/.emacs.d/init.org index d56e8a5..9b311b9 100644 --- a/emacs/.emacs.d/init.org +++ b/emacs/.emacs.d/init.org @@ -24,7 +24,7 @@ Computing Environment". ** Load path Emacs' load path is where it looks to find Emacs Lisp files when - confronted with a =load= or =require= form. Most of my packages are + confronted with a ~load~ or ~require~ form. Most of my packages are managed through the package manager, but not all of them. *** Mode-specific configuration directory @@ -49,7 +49,7 @@ Computing Environment". *** Site lisp - Setup everything so that any autoloads in ~site-lisp/~ get loaded + Setup everything so that any autoloads in =site-lisp/= get loaded and can be used. #+BEGIN_SRC emacs-lisp @@ -455,7 +455,7 @@ Computing Environment". (require 'counsel) #+END_SRC - Hide dotfiles in =counsel-find-file=. + Hide dotfiles in ~counsel-find-file~. #+BEGIN_SRC emacs-lisp (setq counsel-find-file-ignore-regexp @@ -479,7 +479,7 @@ Computing Environment". * Bookmarks - Save bookmarks in my data directory so my =user-emacs-directory= is + Save bookmarks in my data directory so my ~user-emacs-directory~ is less cluttered. #+BEGIN_SRC emacs-lisp @@ -603,7 +603,7 @@ Computing Environment". * Shackle - Shackle is an abstraction over =display-buffer-alist=. + Shackle is an abstraction over ~display-buffer-alist~. #+BEGIN_SRC emacs-lisp (require 'shackle) @@ -944,7 +944,7 @@ Computing Environment". :interactive) #+END_SRC - I also need to add it to the =auto-mode-alist= so ~.mbsyncrc~ is + I also need to add it to the ~auto-mode-alist~ so =.mbsyncrc= is opened with mbsync conf mode. #+BEGIN_SRC emacs-lisp @@ -966,7 +966,7 @@ Computing Environment". :interactive) #+END_SRC - I also need to add it to the =auto-mode-alist= so ~.msmtprc~ is + I also need to add it to the ~auto-mode-alist~ so =.msmtprc= is opened with msmtprc mode. #+BEGIN_SRC emacs-lisp @@ -975,7 +975,7 @@ Computing Environment". ** Git commit mode - Enable =electric-quote-local-mode= to easily type nice-looking + Enable ~electric-quote-local-mode~ to easily type nice-looking quotes while writing commits. #+BEGIN_SRC emacs-lisp -- cgit v1.2.3-54-g00ecf