http://ln.hixie.ch/?start=1037910467&count=1
http://ln.hixie.ch/?start=1137740632&count=1
export PATH=~/bin:$PATH | |
export PATH="/usr/local/mysql/bin:$PATH" | |
# git bash auto-completion | |
source `brew --prefix git`/etc/bash_completion.d/git-completion.bash | |
# latest versions of git has the prompt stuff on an extra file | |
__git_prompt_file=`brew --prefix git`/etc/bash_completion.d/git-prompt.sh | |
if [ -f "$__git_prompt_file" ] | |
then | |
source $__git_prompt_file |
# System-wide .bashrc file for interactive bash(1) shells. | |
# To enable the settings / commands in this file for login shells as well, | |
# this file has to be sourced in /etc/profile. | |
# If not running interactively, don't do anything | |
[ -z "$PS1" ] && return | |
# check the window size after each command and, if necessary, | |
# update the values of LINES and COLUMNS. |
[merge] | |
tool = winmerge | |
[mergetool "winmerge"] | |
cmd = \"C:\\Program Files (x86)\\WinMerge\\WinMergeU.exe\" "$PWD/$LOCAL" "$PWD/$REMOTE" "$PWD/$MERGED" | |
trustExitCode = false | |
keepBackup = false | |
[diff] | |
tool = winmerge | |
export PATH=~/bin:$PATH | |
export PATH="/usr/local/mysql/bin:$PATH" | |
# git bash auto-completion | |
source `brew --prefix git`/etc/bash_completion.d/git-completion.bash | |
# latest versions of git has the prompt stuff on an extra file | |
__git_prompt_file=`brew --prefix git`/etc/bash_completion.d/git-prompt.sh | |
if [ -f "$__git_prompt_file" ] | |
then | |
source $__git_prompt_file |
{ | |
"color_scheme": "Packages/Material Theme/schemes/Material-Theme.tmTheme", | |
"theme": "Material-Theme.sublime-theme", | |
"font_size": 14, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"tab_size": 2, | |
"translate_tabs_to_spaces": true |
[user] | |
name = renaco | |
email = [email protected] | |
[core] | |
excludesfile = /Users/renaco/.gitignore_global | |
editor = /usr/bin/vim | |
[webui] | |
autoupdate = true | |
[alias] | |
webui = !/Users/renaco/.git-webui/release/libexec/git-core/git-webui |
# only linux and mac | |
export PATH=~/bin:$PATH | |
export PATH="/usr/local/mysql/bin:$PATH" | |
# git bash auto-completion | |
source `brew --prefix git`/etc/bash_completion.d/git-completion.bash | |
# latest versions of git has the prompt stuff on an extra file | |
__git_prompt_file=`brew --prefix git`/etc/bash_completion.d/git-prompt.sh | |
if [ -f "$__git_prompt_file" ] | |
then |
# EditorConfig for Front-End | |
root = true | |
[*] | |
charset = utf-8 | |
end_of_line = lf | |
indent_style = space | |
insert_final_new_line = true | |
insert_final_newline = true |