add git send email config

This commit is contained in:
Jacob Janzen 2024-08-11 19:50:25 -05:00
parent 2289c8861b
commit dc05afff4c
8 changed files with 17 additions and 21 deletions

View file

@ -148,6 +148,14 @@ Tangle on save.
(add-hook 'after-save-hook #'org-babel-tangle-config)))
#+end_src
Enable Org Crypt.
#+begin_src emacs-lisp :tangle ~/.config/emacs/tools.el :mkdirp yes
(org-crypt-use-before-save-magic)
(setq org-tags-exclude-from-inheritance '("crypt"))
(setq org-crypt-key nil)
(setq auto-save-default nil)
#+end_src
* Shell
Use =eshell= as an integrated shell.
#+begin_src emacs-lisp :tangle ~/.config/emacs/tools.el :mkdirp yes

View file

@ -1,18 +0,0 @@
#+title: Git Configuration
Define my full name and email.
#+begin_src conf :tangle ~/.gitconfig
[user]
name = Jacob Janzen
email = jjanzenn@proton.me
#+end_src
Use =main= over =master=.
#+begin_src conf :tangle ~/.gitconfig
[init]
defaultBranch = main
#+end_src
Make =pull= rebase on conflict.
#+begin_src conf :tangle ~/.gitconfig
[pull]
rebase = true
#+end_src

BIN
common/gitconfig.org.gpg Normal file

Binary file not shown.

View file

@ -1 +0,0 @@
../common/gitconfig.org

1
gentoo/gitconfig.org.gpg Symbolic link
View file

@ -0,0 +1 @@
../common/gitconfig.org.gpg

View file

@ -29,10 +29,16 @@ else
fi
echo 'installing configuration files...'
find -L -- . -type f -name "*.org" | while read -r file; do
find -L -- . -type f -name "*\.org" | while read -r file; do
echo " installing $file..."
emacs --batch "$file" -f package-initialize --eval '(org-babel-tangle)' >> ~/.update-home.log 2>&1
done
find -L -- . -type f -name "*\.org\.gpg" | while read -r file; do
echo " installing $file..."
gpg -d "$file" > tmp.org
emacs --batch tmp.org -f package-initialize --eval '(org-babel-tangle)' >> ~/.update-home.log 2>&1
rm tmp.org
done
echo 'installing wallpaper...'
cp .wallpaper ~/.wallpaper

View file

@ -1 +0,0 @@
../common/gitconfig.org

1
macos/gitconfig.org.gpg Symbolic link
View file

@ -0,0 +1 @@
../common/gitconfig.org.gpg