diff --git a/git/gitconfig b/git/gitconfig index ccdb253..3780dac 100644 --- a/git/gitconfig +++ b/git/gitconfig @@ -3,8 +3,8 @@ preloadindex = true [color] - diff = always - ui = always + diff = yes + ui = yes [alias] br = branch @@ -34,4 +34,7 @@ [push] default = upstream +[log] + showsignature = true + # vim: ft=gitconfig diff --git a/tcshrc b/tcshrc index c351304..f681726 100644 --- a/tcshrc +++ b/tcshrc @@ -125,6 +125,8 @@ if( $?CSHENV_DEBUG ) then endif source ${CSHENV_DIR}/tcshrc.prompt +safe_source ${CSHENV_DIR}/tcshrc.user + ########################### # vim: ft=tcsh ########################### diff --git a/tcshrc.aliases b/tcshrc.aliases index 22d20e5..f654ebc 100644 --- a/tcshrc.aliases +++ b/tcshrc.aliases @@ -156,6 +156,18 @@ else echo "Couldn't find vim. Beware!" endif +if( -f `which git` ) then + alias g git +else + alias g echo "Git not found!" +endif + +if( -f `which pass` ) then + alias p pass +else + alias p echo "Password store not found!" +endif + safe_source ${CSHENV_DIR}/tcshrc.aliases.${CSHENV_SYSTEM} safe_source ${CSHENV_DIR}/tcshrc.aliases.${CSHENV_HOSTNAME} safe_source ${CSHENV_DIR}/tcshrc.aliases.user