diff options
Diffstat (limited to 'sh')
| -rw-r--r-- | sh/bashrc.sh | 2 | ||||
| -rw-r--r-- | sh/vcs.sh | 6 |
2 files changed, 7 insertions, 1 deletions
diff --git a/sh/bashrc.sh b/sh/bashrc.sh index 80aff075..492b42d6 100644 --- a/sh/bashrc.sh +++ b/sh/bashrc.sh @@ -7,12 +7,12 @@ export DOTFILES=~/dev/libre/dotfiles . $DOTFILES/sh/env.sh . "$GUIX_PROFILE/etc/profile" . $DOTFILES/sh/colors.sh -. $DOTFILES/sh/git-prompt.sh . $DOTFILES/sh/ps1.sh . $DOTFILES/sh/fzf.sh . $DOTFILES/sh/aliases.sh . $DOTFILES/sh/util.sh . $DOTFILES/sh/agents.sh . $DOTFILES/sh/symlinks.sh +. $DOTFILES/sh/vcs.sh . ~/annex/bin/misc/priv.sh . ~/.nurc diff --git a/sh/vcs.sh b/sh/vcs.sh new file mode 100644 index 00000000..5d6afb51 --- /dev/null +++ b/sh/vcs.sh @@ -0,0 +1,6 @@ +#!/bin/sh + +alias mr='mr -s' +alias s='git status' +alias d='git diff' +alias ds='git diff --staged' |
