2017.05.20 update.
- A File Icon
- AdvancedNewFile
- All Autocomplete
- ApacheConf.tmLanguage
- AutoFileName
- Babel
# https://github.com/django/django/blob/master/.editorconfig | |
# http://editorconfig.org | |
root = true | |
[*] | |
indent_style = space | |
indent_size = 4 | |
insert_final_newline = true | |
trim_trailing_whitespace = true |
{ | |
"html": { | |
"allowed_file_extensions": ["htm", "html", "xhtml", "shtml", "xml", "svg"], | |
"brace_style": "collapse", | |
"indent_char": " ", | |
"indent_handlebars": true, | |
"indent_inner_html": false, | |
"indent_scripts": "keep", | |
"indent_size": 2, | |
"max_preserve_newlines": 10, |
Host example.net | |
HostName example.net | |
PreferredAuthentications password | |
User username | |
Host Name | |
HostName example.com | |
IdentityFile ~/.ssh/ssh_key_name | |
IdentitiesOnly yes | |
User username |
{ | |
// Server authentication info | |
"servers": [ | |
{ | |
"host": "hostname", | |
"username": "root" | |
// "password": "password" | |
// or pem file (ssh based authentication) | |
//"pem": "~/.ssh/id_rsa" | |
} |
{ | |
"libs": [ "browser", "jquery" ], | |
"loadEagerly": [ "*.js", "*/*.js", "*/*/*.js", "*/*/*/*.js" ], | |
"dontLoad": [ "node_modules" ], | |
"plugins": { | |
"complete_strings": {}, | |
"node": {}, | |
"node-express": {} | |
} | |
} |
{ | |
"adjoining-classes": false, | |
"box-sizing": false, | |
"box-model": false, | |
"compatible-vendor-prefixes": false, | |
"floats": false, | |
"font-sizes": false, | |
"gradients": false, | |
"important": false, | |
"known-properties": false, |
{ | |
"frontend": { | |
"name": "YOUR PROJECT NAME", | |
"stylesheets": "RELATIVE/PATH/TO/STYLESHEETS/FOLDER", | |
"javascripts": "RELATIVE/PATH/TO/JAVASCRIPTS/FOLDER" | |
} | |
} |
function npmup --description 'npm check outdated' | |
command npm outdated --depth=0 $argv | |
end |
function lds --description 'Livedown start' | |
command livedown start $argv --open | |
end |