Last active
November 12, 2017 20:22
-
-
Save mincong-h/44d6f5949f3f047c3e4e871c8ed869bb to your computer and use it in GitHub Desktop.
Revisions
-
mincong-h revised this gist
Nov 12, 2017 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -8,7 +8,7 @@ GIT_PS1_SHOWDIRTYSTATE=1 GIT_PS1_SHOWUNTRACKEDFILES=1 GIT_PS1_SHOWSTASHSTATE=1 GIT_PS1_SHOWUPSTREAM="auto verbose" PS1='\W \033[38;5;015m$(__git_ps1 "(%s) ")\033[0m\$ ' # MySQL export PATH="/usr/local/mysql/bin:$PATH" -
mincong-h revised this gist
Nov 10, 2017 . 1 changed file with 3 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -10,6 +10,9 @@ GIT_PS1_SHOWSTASHSTATE=1 GIT_PS1_SHOWUPSTREAM="auto verbose" PS1='\W $(__git_ps1 "(%s) ")\$ ' # MySQL export PATH="/usr/local/mysql/bin:$PATH" # Nuxeo . /Users/mincong/github/nuxeo/scripts/gitfunctions.sh export PATH=/Applications/LibreOffice.app/Contents/MacOS:$PATH -
mincong-h revised this gist
Oct 17, 2017 . 1 changed file with 2 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -29,4 +29,5 @@ alias mvnnsu='mvn clean install -DskipTests -nsu' alias mvnnvd='mvn clean install -DskipTests -nsu -pl "!nuxeo-view-designer"' alias todo="vim ${HOME}/Desktop/todo.md" alias grep="`which grep` --color=auto" alias vimbr='vim "$(git rev-parse --abbrev-ref HEAD).md"' alias chrome="open /Applications/Google\ Chrome.app/" -
mincong-h revised this gist
Oct 14, 2017 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -29,3 +29,4 @@ alias mvnnsu='mvn clean install -DskipTests -nsu' alias mvnnvd='mvn clean install -DskipTests -nsu -pl "!nuxeo-view-designer"' alias todo="vim ${HOME}/Desktop/todo.md" alias grep="`which grep` --color=auto" alias vimbr='vim "$(git rev-parse --abbrev-ref HEAD).md"' -
mincong-h revised this gist
Oct 2, 2017 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -28,4 +28,4 @@ alias ll='ls -lG' alias mvnnsu='mvn clean install -DskipTests -nsu' alias mvnnvd='mvn clean install -DskipTests -nsu -pl "!nuxeo-view-designer"' alias todo="vim ${HOME}/Desktop/todo.md" alias grep="`which grep` --color=auto" -
mincong-h revised this gist
Oct 2, 2017 . 1 changed file with 2 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -27,4 +27,5 @@ export LSCOLORS=GxFxCxDxBxegedabagaced alias ll='ls -lG' alias mvnnsu='mvn clean install -DskipTests -nsu' alias mvnnvd='mvn clean install -DskipTests -nsu -pl "!nuxeo-view-designer"' alias todo="vim ${HOME}/Desktop/todo.md" alias grep="`which grep` --color=always" -
mincong-h revised this gist
Sep 18, 2017 . 1 changed file with 4 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -24,4 +24,7 @@ export CLICOLOR=1 export LSCOLORS=GxFxCxDxBxegedabagaced # Alias alias ll='ls -lG' alias mvnnsu='mvn clean install -DskipTests -nsu' alias mvnnvd='mvn clean install -DskipTests -nsu -pl "!nuxeo-view-designer"' alias unjar='jar xf' -
mincong-h revised this gist
Jun 4, 2017 . 1 changed file with 4 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -21,4 +21,7 @@ export JAVA_OPTS="-Xmx4g -Xms3g" # Terminal Highlight export CLICOLOR=1 export LSCOLORS=GxFxCxDxBxegedabagaced # Alias alias ll='ls -lG' -
mincong-h created this gist
Feb 24, 2017 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,24 @@ # Git prompt export GIT_HOME=/Users/mincong/github/git source $GIT_HOME/contrib/completion/git-prompt.sh # Git completion; import the file corresponding to your Shell: source $GIT_HOME/contrib/completion/git-completion.bash # Git additional custom changes GIT_PS1_SHOWDIRTYSTATE=1 GIT_PS1_SHOWUNTRACKEDFILES=1 GIT_PS1_SHOWSTASHSTATE=1 GIT_PS1_SHOWUPSTREAM="auto verbose" PS1='\W $(__git_ps1 "(%s) ")\$ ' # Nuxeo . /Users/mincong/github/nuxeo/scripts/gitfunctions.sh export PATH=/Applications/LibreOffice.app/Contents/MacOS:$PATH export PATH=/Applications/Firefox42.app/Contents/MacOS:$PATH # Java export MAVEN_OPTS="-Xmx4g -Xms3g" export JAVA_OPTS="-Xmx4g -Xms3g" # Terminal Highlight export CLICOLOR=1 export LSCOLORS=GxFxCxDxBxegedabagaced