What even is a commit message
This commit is contained in:
parent
777f86082b
commit
44d3d31ffe
@ -8,3 +8,4 @@ TAGS
|
|||||||
.vagrant
|
.vagrant
|
||||||
*.swp
|
*.swp
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
.~lock*
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
editor = vim
|
editor = vim
|
||||||
filemode = true
|
filemode = true
|
||||||
autocrlf = false
|
autocrlf = false
|
||||||
pager = less -FRX
|
pager = less -FRXx2
|
||||||
|
|
||||||
[clean]
|
[clean]
|
||||||
requireForce = false
|
requireForce = false
|
||||||
@ -89,6 +89,7 @@
|
|||||||
|
|
||||||
logv = log --name-status
|
logv = log --name-status
|
||||||
hug = blame
|
hug = blame
|
||||||
|
lg = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
|
||||||
|
|
||||||
# vim: set filetype=cfg noexpandtab:
|
# vim: set filetype=cfg noexpandtab:
|
||||||
[commit]
|
[commit]
|
||||||
|
7
meatballhat.zsh-theme
Normal file
7
meatballhat.zsh-theme
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
local ret_status="%(?:%{$fg_bold[green]%}➜ :%{$fg_bold[red]%}➜ %s)"
|
||||||
|
PROMPT='$(date -u +%Y-%m-%dT%H:%M:%S) ${ret_status}%{$fg_bold[green]%}%p %{$fg[cyan]%}%c %{$fg_bold[blue]%}$(git_prompt_info)%{$fg_bold[blue]%} % %{$reset_color%}'
|
||||||
|
|
||||||
|
ZSH_THEME_GIT_PROMPT_PREFIX="git:(%{$fg[red]%}"
|
||||||
|
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
|
||||||
|
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[blue]%}) %{$fg[yellow]%}🙀 %{$reset_color%}"
|
||||||
|
ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[blue]%})"
|
1
vimrc
1
vimrc
@ -18,6 +18,7 @@ set textwidth=67
|
|||||||
|
|
||||||
map ,t :w<CR>
|
map ,t :w<CR>
|
||||||
map ,- :nohl<CR>
|
map ,- :nohl<CR>
|
||||||
|
map ,w :%s/ *$//<CR>
|
||||||
|
|
||||||
let g:go_fmt_command = "goimports"
|
let g:go_fmt_command = "goimports"
|
||||||
|
|
||||||
|
24
zshrc
24
zshrc
@ -1,5 +1,5 @@
|
|||||||
ZSH=$HOME/.oh-my-zsh
|
ZSH=$HOME/.oh-my-zsh
|
||||||
ZSH_THEME=robbyrussell
|
ZSH_THEME=meatballhat
|
||||||
|
|
||||||
CASE_SENSITIVE="true"
|
CASE_SENSITIVE="true"
|
||||||
|
|
||||||
@ -40,6 +40,8 @@ plugins=(
|
|||||||
git-hubflow
|
git-hubflow
|
||||||
golang
|
golang
|
||||||
heroku
|
heroku
|
||||||
|
hk
|
||||||
|
knife
|
||||||
osx
|
osx
|
||||||
pip
|
pip
|
||||||
postgres
|
postgres
|
||||||
@ -59,6 +61,8 @@ fpath=(/usr/local/share/zsh/site-functions $fpath)
|
|||||||
|
|
||||||
source $ZSH/oh-my-zsh.sh
|
source $ZSH/oh-my-zsh.sh
|
||||||
|
|
||||||
|
unalias gb
|
||||||
|
|
||||||
# The completion for aws is not compatible with $fpath :scream_cat:
|
# The completion for aws is not compatible with $fpath :scream_cat:
|
||||||
if [[ -f /usr/local/share/zsh/site-functions/_aws ]] ; then
|
if [[ -f /usr/local/share/zsh/site-functions/_aws ]] ; then
|
||||||
source /usr/local/share/zsh/site-functions/_aws
|
source /usr/local/share/zsh/site-functions/_aws
|
||||||
@ -72,6 +76,7 @@ path=(
|
|||||||
$HOME/gopath/bin
|
$HOME/gopath/bin
|
||||||
$HOME/.rbenv/bin
|
$HOME/.rbenv/bin
|
||||||
$HOME/.rbenv/shims
|
$HOME/.rbenv/shims
|
||||||
|
$HOME/.phpenv/bin
|
||||||
/usr/local/sbin
|
/usr/local/sbin
|
||||||
/usr/local/bin
|
/usr/local/bin
|
||||||
/usr/sbin
|
/usr/sbin
|
||||||
@ -82,7 +87,14 @@ path=(
|
|||||||
/usr/local/games
|
/usr/local/games
|
||||||
)
|
)
|
||||||
|
|
||||||
eval "$(gimme 1.4.1)" 2>/dev/null
|
if which pyenv > /dev/null ; then
|
||||||
|
eval "$(pyenv init -)"
|
||||||
|
fi
|
||||||
|
export PYENV_ROOT='/usr/local/var/pyenv'
|
||||||
|
|
||||||
|
eval "$(phpenv init -)"
|
||||||
|
|
||||||
|
eval "$(gimme 1.4.2)" 2>/dev/null
|
||||||
export GOPATH="$HOME/gopath"
|
export GOPATH="$HOME/gopath"
|
||||||
|
|
||||||
CDPATH="$HOME/workspace:$HOME/src:$HOME/Development/src:$HOME/repos"
|
CDPATH="$HOME/workspace:$HOME/src:$HOME/Development/src:$HOME/repos"
|
||||||
@ -108,8 +120,6 @@ function load-ssh-agent() {
|
|||||||
|
|
||||||
[[ -e ~/.zshenv ]] && source ~/.zshenv
|
[[ -e ~/.zshenv ]] && source ~/.zshenv
|
||||||
|
|
||||||
# added by travis gem
|
[ -f ~/.travis/travis.sh ] && source ~/.travis/travis.sh
|
||||||
[[ -f ~/.travis/travis.sh ]] && source ~/.travis/travis.sh
|
[ -f ~/google-cloud-sdk/path.zsh.inc ] && source ~/google-cloud-sdk/path.zsh.inc
|
||||||
|
[ -f ~/google-cloud-sdk/completion.zsh.inc ] && source ~/google-cloud-sdk/completion.zsh.inc
|
||||||
# added by travis gem
|
|
||||||
[ -f /Users/me/.travis/travis.sh ] && source /Users/me/.travis/travis.sh
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user