From: Armaan Bhojwani Date: Mon, 29 Mar 2021 18:10:16 +0000 (-0400) Subject: Switch from "plain" to "conf" syntax X-Git-Url: https://git.armaanb.net/?p=config.org.git;a=commitdiff_plain;h=fff1c133d2261eb5e81e1c47f9a78762e4ba46f9 Switch from "plain" to "conf" syntax --- diff --git a/config.org b/config.org index d82a415..7b2ebf0 100644 --- a/config.org +++ b/config.org @@ -1165,6 +1165,7 @@ I manage plugins using my own plugin manager, ZPE. https://git.sr.ht/~armaan/zpe alias favorites='pacman -Qe | cut -d " " -f 1 > ~/Documents/favorites' alias ufetch='ufetch-arch' alias reflect='reflector --verbose --sort rate --save \ + ~/.local/etc/pacman.d/mirrorlist --download-timeout 60' # Takes ~45m to run #+end_src *** Exports #+begin_src shell :tangle ~/.config/zsh/zshrc @@ -1449,24 +1450,24 @@ https://github.com/sharkdp/vivid #+end_src ** Git *** User -#+begin_src plain :tangle ~/.gitconfig +#+begin_src conf :tangle ~/.gitconfig [user] name = Armaan Bhojwani email = me@armaanb.net signingkey = 0FEB9471E19C49C60CFBEB133C9ED82FFE788E4A #+end_src *** Init -#+begin_src plain :tangle ~/.gitconfig +#+begin_src conf :tangle ~/.gitconfig [init] defaultBranch = main #+end_src *** GPG -#+begin_src plain :tangle ~/.gitconfig +#+begin_src conf :tangle ~/.gitconfig [gpg] program = gpg #+end_src *** Sendemail -#+begin_src plain :tangle ~/.gitconfig +#+begin_src conf :tangle ~/.gitconfig [sendemail] smtpserver = smtp.mailbox.org smtpuser = me@armaanb.net @@ -1475,12 +1476,12 @@ https://github.com/sharkdp/vivid confirm = auto #+end_src *** Submodules -#+begin_src plain :tangle ~/.gitconfig +#+begin_src conf :tangle ~/.gitconfig [submodule] recurse = true #+end_src *** Aliases -#+begin_src plain :tangle ~/.gitconfig +#+begin_src conf :tangle ~/.gitconfig [alias] stat = diff --stat sclone = clone --depth 1 @@ -1494,7 +1495,7 @@ https://github.com/sharkdp/vivid mirror = git config --global alias.mirrormirror #+end_src *** Commits -#+begin_src plain :tangle ~/.gitconfig +#+begin_src conf :tangle ~/.gitconfig [commit] gpgsign = true #+end_src