Skip to content

Instantly share code, notes, and snippets.

@mikemclin
Last active November 26, 2019 16:30

Revisions

  1. mikemclin revised this gist Nov 26, 2019. 1 changed file with 7 additions and 0 deletions.
    7 changes: 7 additions & 0 deletions .bash_profile
    Original file line number Diff line number Diff line change
    @@ -1,9 +1,16 @@
    export PATH=vendor/bin:$PATH
    export PATH=Users/mikemclin/bin:$PATH
    export PATH=/.composer/vendor/bin:$PATH
    export PATH=node_modules/.bin:$PATH

    export EDITOR='subl -w'

    alias artisan='php artisan'

    function homestead() {
    ( cd ~/Homestead && vagrant $* )
    }

    export NVM_DIR="$HOME/.nvm"
    [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
    [ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
  2. mikemclin revised this gist Jan 22, 2017. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion .bash_profile
    Original file line number Diff line number Diff line change
    @@ -1,6 +1,6 @@
    export PATH=vendor/bin:$PATH
    export PATH=/.composer/vendor/bin:$PATH
    export PATH=node_modules/bin:$PATH
    export PATH=node_modules/.bin:$PATH

    alias artisan='php artisan'

  3. mikemclin revised this gist Jan 22, 2017. 1 changed file with 6 additions and 1 deletion.
    7 changes: 6 additions & 1 deletion .bash_profile
    Original file line number Diff line number Diff line change
    @@ -1,4 +1,9 @@
    export PATH=vendor/bin:$PATH
    export PATH=/.composer/vendor/bin:$PATH
    export PATH=node_modules/bin:$PATH

    alias artisan='php artisan'
    alias jserve='java -jar "app/tests/selenium-server-standalone-2.39.0.jar"'

    function homestead() {
    ( cd ~/Homestead && vagrant $* )
    }
  4. mikemclin created this gist Mar 3, 2014.
    4 changes: 4 additions & 0 deletions .bash_profile
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,4 @@
    export PATH=vendor/bin:$PATH

    alias artisan='php artisan'
    alias jserve='java -jar "app/tests/selenium-server-standalone-2.39.0.jar"'