]> git.armaanb.net Git - config.org.git/commitdiff
Switch from "plain" to "conf" syntax
authorArmaan Bhojwani <me@armaanb.net>
Mon, 29 Mar 2021 18:10:16 +0000 (14:10 -0400)
committerArmaan Bhojwani <me@armaanb.net>
Mon, 29 Mar 2021 18:10:16 +0000 (14:10 -0400)
config.org

index d82a41561fa70de470ee3c943a94a7eb2eeea93b..7b2ebf0df61d85f99e98f1e506c9a05300d25cdb 100644 (file)
@@ -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