aboutsummaryrefslogtreecommitdiffstats
path: root/emacs
diff options
context:
space:
mode:
authorGravatar Tom Willemse2017-12-29 12:59:56 -0800
committerGravatar Tom Willemse2017-12-29 12:59:56 -0800
commite2a4dfdb45475771933f41bc1724fad7f6bd0ecb (patch)
treebaccba8a21367895b56dac200966f6cc08aec655 /emacs
parent7d26c9264003380cd4bd110cd404c10060640297 (diff)
downloadnew-dotfiles-e2a4dfdb45475771933f41bc1724fad7f6bd0ecb.tar.gz
new-dotfiles-e2a4dfdb45475771933f41bc1724fad7f6bd0ecb.zip
Properly use ~code~ and =verbatim=
Diffstat (limited to 'emacs')
-rw-r--r--emacs/.emacs.d/init.org16
1 files changed, 8 insertions, 8 deletions
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