chore: import upstream snapshot with attribution
This commit is contained in:
Executable
+40
@@ -0,0 +1,40 @@
|
||||
# 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\]"
|
||||
|
||||
export PS1="\[\033[1;33m\]λ $WHITE\h $GREEN\w $NO_COLOUR"
|
||||
Executable
+43
@@ -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
|
||||
Reference in New Issue
Block a user