Add git config
This commit is contained in:
parent
59a299cc3c
commit
442149505e
4 changed files with 13 additions and 0 deletions
|
@ -60,6 +60,7 @@ then
|
|||
. /usr/local/etc/bash_completion
|
||||
fi
|
||||
|
||||
export PATH="$HOME/.cargo/bin:$PATH"
|
||||
export PATH="$HOME/.poetry/bin:$PATH"
|
||||
|
||||
# >>> conda initialize >>>
|
||||
|
|
|
@ -7,4 +7,5 @@ stow -t ~ tmux
|
|||
stow -t ~ nvim
|
||||
stow -t ~ ctags
|
||||
stow -t ~ editorconfig
|
||||
stow -t ~ git
|
||||
|
||||
|
|
10
git/.gitconfig
Normal file
10
git/.gitconfig
Normal file
|
@ -0,0 +1,10 @@
|
|||
[user]
|
||||
name = Nicholas Tietz-Sokolsky
|
||||
email = me@ntietz.com
|
||||
[push]
|
||||
default = simple
|
||||
[core]
|
||||
excludesfile = /home/nicholas/.gitignore_global
|
||||
editor = nvim
|
||||
[alias]
|
||||
praise = blame
|
1
git/.gitignore_global
Normal file
1
git/.gitignore_global
Normal file
|
@ -0,0 +1 @@
|
|||
*.swp
|
Loading…
Reference in a new issue