Browse Source

More symlink calls

main
parent
commit
e28c2273e3
  1. 9
      modules/editor.org
  2. 16
      modules/email.org

9
modules/editor.org

@ -255,6 +255,15 @@ Interact with *Git*[fn:19] forges from *Magit*[fn:17] and Emacs using *Forge*[fn
:after magit) :after magit)
#+end_src #+end_src
** Deploying the global config
*Git*[fn:19] reads its global config from ~$HOME/.gitconfig~, create a link to the custom configuration.
#+begin_src emacs-lisp
(dotfiles/symlink "~/.emacs.d/config/git"
"~/.gitconfig")
#+end_src
* Resources * Resources
[fn:1] https://vim.org [fn:1] https://vim.org

16
modules/email.org

@ -43,8 +43,22 @@ Expunge Both
SyncState * SyncState *
#+end_src #+end_src
** Create symbolic link
The system typically expects to find this file at ~$HOME/.mbsyncrc~, but you may also specify a custom path if launching the command using arguments. I chose to symlink the default location to my repository. The system typically expects to find this file at ~$HOME/.mbsyncrc~, but you may also specify a custom path if launching the command using arguments. I chose to symlink the default location to my repository.
#+begin_src emacs-lisp
(dotfiles/symlink "~/.emacs.d/config/mbsyncrc"
"~/.mbsyncrc")
#+end_src
This repository also contains my personal encrypted auth info.
#+begin_src emacs-lisp
(dotfiles/symlink "~/.emacs.d/config/authinfo.gpg"
"~/.authinfo.gpg")
#+end_src
* Indexing * Indexing
:PROPERTIES: :PROPERTIES:
:header-args: :tangle no :header-args: :tangle no
@ -59,7 +73,7 @@ mu index --maildir="~/.cache/mail"
* Integration * Integration
After syncing and indexing the mail is ready to be used inside of Emacs. Download and install *mu4e*[fn:2] and configure the *mail account*[fn:3].
After syncing and indexing the mail is ready for Emacs. Download and install *mu4e*[fn:2] and configure the *mail account*[fn:3].
+ Update every 5 minutes + Update every 5 minutes
+ Scale text for all devices + Scale text for all devices

Loading…
Cancel
Save