Properly use ~code~ and =verbatim=

This commit is contained in:
Tom Willemse 2017-12-29 12:59:56 -08:00
parent 7d26c92640
commit e2a4dfdb45

View file

@ -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