about summary refs log tree commit diff stats
path: root/config.org
diff options
context:
space:
mode:
authorCase Duckworth2021-02-23 12:37:52 -0600
committerCase Duckworth2021-02-23 12:37:52 -0600
commit53093e23148cc73a6edeb7b97e68b7cff15379d8 (patch)
tree8f92d33c8a255d24ba442503e9708f64203786df /config.org
parentForce LF (diff)
downloademacs-53093e23148cc73a6edeb7b97e68b7cff15379d8.tar.gz
emacs-53093e23148cc73a6edeb7b97e68b7cff15379d8.zip
Add ~/.gitconfig
Diffstat (limited to 'config.org')
-rw-r--r--config.org33
1 files changed, 33 insertions, 0 deletions
diff --git a/config.org b/config.org index bbb8fed..1263c8e 100644 --- a/config.org +++ b/config.org
@@ -3139,6 +3139,39 @@ This runs Emacs with the =--debug-init= option enabled.
3139start "emacs-debug" "%EMACS%" --debug-init %* 3139start "emacs-debug" "%EMACS%" --debug-init %*
3140#+end_src 3140#+end_src
3141 3141
3142*** Other configuration files
3143
3144Since I kind of have this weird .. portable setup on Windows, I'm going to start
3145putting other config files in here that I need. It's a real pain in the ass to
3146have them all out of sync.
3147
3148**** ~/.gitconfig
3149
3150#+begin_src gitconfig :tangle (if (eq system-type 'windows-nt) "~/.gitconfig" "")
3151 # tangled from ~/.emacs.d/config.org
3152 [github]
3153 user = duckwork
3154 [credential]
3155 helper = store
3156 [user]
3157 name = Case Duckworth
3158 email = acdw@acdw.net
3159 [pull]
3160 rebase = false
3161 [core]
3162 excludesfile = ~/.gitignore
3163 attributesfile = ~/.gitattributes
3164 autocrlf = false
3165 eol = lf
3166 [diff "lisp"]
3167 # basic
3168 xfuncname = "^(\\(.*)$"
3169 # advanced
3170 xfuncname = "^(((;;;+ )|\\(|([ \t]+\\(((cl-|el-patch-)?def(un|var|macro|method|custom)|gb/))).*)$"
3171 [diff "org"]
3172 xfuncname = "^(\\*+ +.*)$"
3173#+end_src
3174
3142* Appendices 3175* Appendices
3143 3176
3144** config.el 3177** config.el