add git send email config
This commit is contained in:
parent
2289c8861b
commit
dc05afff4c
8 changed files with 17 additions and 21 deletions
|
@ -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
|
||||
|
|
|
@ -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
BIN
common/gitconfig.org.gpg
Normal file
Binary file not shown.
|
@ -1 +0,0 @@
|
|||
../common/gitconfig.org
|
1
gentoo/gitconfig.org.gpg
Symbolic link
1
gentoo/gitconfig.org.gpg
Symbolic link
|
@ -0,0 +1 @@
|
|||
../common/gitconfig.org.gpg
|
8
install
8
install
|
@ -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
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
../common/gitconfig.org
|
1
macos/gitconfig.org.gpg
Symbolic link
1
macos/gitconfig.org.gpg
Symbolic link
|
@ -0,0 +1 @@
|
|||
../common/gitconfig.org.gpg
|
Loading…
Add table
Reference in a new issue