Skip to content

Instantly share code, notes, and snippets.

# 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

Installed plugins for Sublime Text 3

2017.05.20 update.

  • A File Icon
  • AdvancedNewFile
  • All Autocomplete
  • ApacheConf.tmLanguage
  • AutoFileName
  • Babel
{
"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,
@gaspanik
gaspanik / config
Last active January 27, 2016 02:42
ssh_config
Host example.net
HostName example.net
PreferredAuthentications password
User username
Host Name
HostName example.com
IdentityFile ~/.ssh/ssh_key_name
IdentitiesOnly yes
User username
@gaspanik
gaspanik / digital_ocean_with_ssh_agent_mup.json
Created September 18, 2015 06:49
mup.json with ssh_agent
{
// Server authentication info
"servers": [
{
"host": "hostname",
"username": "root"
// "password": "password"
// or pem file (ssh based authentication)
//"pem": "~/.ssh/id_rsa"
}
@gaspanik
gaspanik / .tern-project
Last active August 29, 2015 14:17
.tern-project
{
"libs": [ "browser", "jquery" ],
"loadEagerly": [ "*.js", "*/*.js", "*/*/*.js", "*/*/*/*.js" ],
"dontLoad": [ "node_modules" ],
"plugins": {
"complete_strings": {},
"node": {},
"node-express": {}
}
}
@gaspanik
gaspanik / .csslintrc
Created March 1, 2015 06:23
csslint-sample
{
"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,
@gaspanik
gaspanik / package.json
Created February 5, 2015 11:17
frontend-md package.json
{
"frontend": {
"name": "YOUR PROJECT NAME",
"stylesheets": "RELATIVE/PATH/TO/STYLESHEETS/FOLDER",
"javascripts": "RELATIVE/PATH/TO/JAVASCRIPTS/FOLDER"
}
}
@gaspanik
gaspanik / npmup.fish
Last active August 29, 2015 14:12
npm outdated fishshell function
function npmup --description 'npm check outdated'
command npm outdated --depth=0 $argv
end
@gaspanik
gaspanik / lds.fish
Created December 9, 2014 13:30
livedown start fish function
function lds --description 'Livedown start'
command livedown start $argv --open
end