Minor edits.

This commit is contained in:
Derek Taylor
2021-06-05 12:38:42 -05:00
parent 125f9d2630
commit 837b3c7fb5
4 changed files with 14 additions and 4 deletions

View File

@@ -35,6 +35,7 @@
- [[#neotree][NEOTREE]]
- [[#open-specific-files][OPEN SPECIFIC FILES]]
- [[#org-mode][ORG MODE]]
- [[#password-store][PASSWORD STORE]]
- [[#registers][REGISTERS]]
- [[#remote-connections][REMOTE CONNECTIONS]]
- [[#shells][SHELLS]]
@@ -674,6 +675,13 @@ We need ox-man for "Org eXporting" to manpage format.
(use-package ox-gemini)
#+END_SRC
* PASSWORD STORE
Uses the standard Unix password store "pass".
#+begin_src emacs-lisp
(use-package! password-store)
#+end_src
* REGISTERS
Emacs registers are compartments where you can save text, rectangles and positions for later use. Once you save text or a rectangle in a register, you can copy it into the buffer once or many times; once you save a position in a register, you can jump back to that position once or many times. The default GNU Emacs keybindings for these commands (with the exception of counsel-register) involves 'C-x r' followed by one or more other keys. I wanted to make this a little more user friendly, and since I am using Doom Emacs, I choose to replace the 'C-x r' part of the key chords with 'SPC r'.