This file contains 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 characters
{ | |
"color_scheme": "Packages/User/SublimeLinter/Monokai (SL).tmTheme", | |
"draw_white_space": "all", | |
"ensure_newline_at_eof_on_save": true, | |
"folder_exclude_patterns": | |
[ | |
".svn", | |
".git", | |
".hg", | |
"CVS", |
This file contains 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 characters
<snippet> | |
<!-- Tools -> Developer -> New Snippet..., Save As... console_log.sublime-snippet --> | |
<content><![CDATA[console.log($1)$0]]></content> | |
<tabTrigger>log</tabTrigger> | |
<scope>text.html,source.js,source.jsx</scope> | |
<description>console.log()</description> | |
</snippet> |
This file contains 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 characters
var promisify = require('promisify-node'), | |
PromiseFtp = require('promise-ftp'), | |
fs = promisify('fs') | |
var _ftp = new PromiseFtp(), | |
_localFilePath = './data/', | |
_remoteFilePath = '/public_html/temp/' | |
function Ftp(env){ | |
this.config = { |
This file contains 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 characters
export PATH=~/bin:/usr/local/bin:/usr/local/mysql/bin:$PATH | |
export EDITOR=subl | |
# command prompt change: | |
# http://osxdaily.com/2006/12/11/how-to-customize-your-terminal-prompt/ | |
export PS1="$ " | |
# add colour to the terminal output | |
export CLICOLOR=1 | |
export LSCOLORS=cxFxCxDxBxegedabagacad |