forked from PaddlePaddle/Paddle
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into…
… srl_api_v2
- Loading branch information
Showing
11 changed files
with
3,367 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
# Locales | ||
|
||
export LC_ALL=en_US.UTF-8 | ||
export LANG=en_US.UTF-8 | ||
export LANGUAGE=en_US.UTF-8 | ||
|
||
# Aliases | ||
|
||
alias rm='rm -i' | ||
alias cp='cp -i' | ||
alias mv='mv -i' | ||
|
||
alias ls='ls -hFG' | ||
alias l='ls -lF' | ||
alias ll='ls -alF' | ||
alias lt='ls -ltrF' | ||
alias ll='ls -alF' | ||
alias lls='ls -alSrF' | ||
alias llt='ls -altrF' | ||
|
||
# Colorize directory listing | ||
|
||
alias ls="ls -ph --color=auto" | ||
|
||
# Colorize grep | ||
|
||
if echo hello|grep --color=auto l >/dev/null 2>&1; then | ||
export GREP_OPTIONS="--color=auto" GREP_COLOR="1;31" | ||
fi | ||
|
||
# Shell | ||
|
||
export CLICOLOR="1" | ||
|
||
YELLOW="\[\033[1;33m\]" | ||
NO_COLOUR="\[\033[0m\]" | ||
GREEN="\[\033[1;32m\]" | ||
WHITE="\[\033[1;37m\]" | ||
|
||
source ~/.scripts/git-prompt.sh | ||
|
||
export PS1="\[\033[1;33m\]λ $WHITE\h $GREEN\w$YELLOW\$(__git_ps1 \" \[\033[35m\]{\[\033[36m\]%s\[\033[35m\]}\")$NO_COLOUR " | ||
|
||
# Git | ||
|
||
source ~/.scripts/git-completion.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
[user] | ||
name = | ||
email = | ||
|
||
[alias] | ||
st = status --branch --short | ||
ci = commit | ||
br = branch | ||
co = checkout | ||
df = diff | ||
l = log --pretty=format:\"%h %ad | %s%d [%an]\" --graph --date=short | ||
ll = log --stat | ||
|
||
[merge] | ||
tool = vimdiff | ||
|
||
[core] | ||
excludesfile = ~/.gitignore | ||
editor = vim | ||
|
||
[color] | ||
branch = auto | ||
diff = auto | ||
status = auto | ||
|
||
[color "branch"] | ||
current = yellow reverse | ||
local = yellow | ||
remote = green | ||
|
||
[color "diff"] | ||
meta = yellow bold | ||
frag = magenta bold | ||
old = red bold | ||
new = green bold | ||
|
||
[color "status"] | ||
added = yellow | ||
changed = green | ||
untracked = cyan | ||
|
||
[push] | ||
default = matching |
Oops, something went wrong.