diff options
author | FivePixels <dylan.bolger00@gmail.com> | 2023-01-28 18:15:00 -0600 |
---|---|---|
committer | test <dylan.bolger00@gmail.com> | 2023-01-28 18:28:34 -0600 |
commit | d278772e6318bcc5a8c16126df433194dc3a577c (patch) | |
tree | f6af159f2070666e3c65142eec41b221f4f94782 | |
parent | 912744f686b4d9ed3422c1bbf87a3c590c32b7db (diff) | |
download | dots-d278772e6318bcc5a8c16126df433194dc3a577c.tar.xz dots-d278772e6318bcc5a8c16126df433194dc3a577c.zip |
display gitconfig after loading git creds
-rw-r--r-- | .config/fish/functions/load_dots.fish | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/fish/functions/load_dots.fish b/.config/fish/functions/load_dots.fish index 6a01343..e754185 100644 --- a/.config/fish/functions/load_dots.fish +++ b/.config/fish/functions/load_dots.fish @@ -4,7 +4,6 @@ function load_dots if test $arg_count -eq 0 printf "options: %s\n" $options[1] end - for option in $argv switch "$option" case git @@ -24,4 +23,5 @@ function load_git git config --global $git_config_key $$env_var end end + cat ~/.gitconfig end |