Skip to content

Commit

Permalink
Increase ulimit and add node_modules to PATH.
Browse files Browse the repository at this point in the history
Increase the maximum number of open file descriptors to 2048 to deal with gulp
issues: sindresorhus/gulp-imagemin#10. Prepend
node_modules/.bin to PATH for easier use of project-specific node modules.
  • Loading branch information
darthmall committed Sep 22, 2014
1 parent fe36b5c commit 134399c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion bash_profile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ bind "set show-all-if-ambiguous on"
alias ls="ls -G"
alias ll="ls -laGh"

export PATH=/usr/local/bin:$PATH
export PATH=./node_modules/.bin:/usr/local/bin:$PATH

export PS1="\e[92m\h:\e[36m\W \e[92m\$\e[0m "

ulimit -S -n 2048

0 comments on commit 134399c

Please sign in to comment.