Properly use ~code~ and =verbatim=
This commit is contained in:
parent
7d26c92640
commit
e2a4dfdb45
1 changed files with 8 additions and 8 deletions
|
@ -24,7 +24,7 @@ Computing Environment".
|
||||||
** Load path
|
** Load path
|
||||||
|
|
||||||
Emacs' load path is where it looks to find Emacs Lisp files when
|
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.
|
managed through the package manager, but not all of them.
|
||||||
|
|
||||||
*** Mode-specific configuration directory
|
*** Mode-specific configuration directory
|
||||||
|
@ -49,7 +49,7 @@ Computing Environment".
|
||||||
|
|
||||||
*** Site lisp
|
*** 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.
|
and can be used.
|
||||||
|
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
@ -455,7 +455,7 @@ Computing Environment".
|
||||||
(require 'counsel)
|
(require 'counsel)
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
Hide dotfiles in =counsel-find-file=.
|
Hide dotfiles in ~counsel-find-file~.
|
||||||
|
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(setq counsel-find-file-ignore-regexp
|
(setq counsel-find-file-ignore-regexp
|
||||||
|
@ -479,7 +479,7 @@ Computing Environment".
|
||||||
|
|
||||||
* Bookmarks
|
* 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.
|
less cluttered.
|
||||||
|
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
@ -603,7 +603,7 @@ Computing Environment".
|
||||||
|
|
||||||
* Shackle
|
* Shackle
|
||||||
|
|
||||||
Shackle is an abstraction over =display-buffer-alist=.
|
Shackle is an abstraction over ~display-buffer-alist~.
|
||||||
|
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(require 'shackle)
|
(require 'shackle)
|
||||||
|
@ -944,7 +944,7 @@ Computing Environment".
|
||||||
:interactive)
|
:interactive)
|
||||||
#+END_SRC
|
#+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.
|
opened with mbsync conf mode.
|
||||||
|
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
@ -966,7 +966,7 @@ Computing Environment".
|
||||||
:interactive)
|
:interactive)
|
||||||
#+END_SRC
|
#+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.
|
opened with msmtprc mode.
|
||||||
|
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
@ -975,7 +975,7 @@ Computing Environment".
|
||||||
|
|
||||||
** Git commit mode
|
** 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.
|
quotes while writing commits.
|
||||||
|
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
|
Loading…
Reference in a new issue