docker stuff and others

main
Steffen Rademacker 10 years ago
parent ca9abef42d
commit 052c0ceec9

@ -8,48 +8,40 @@
"no-console": 0,
"no-reserved-keys": 2,
"block-scoped-var": 2,
"default-case": 2,
"default-case": 1,
"no-div-regex": 2,
"no-else-return": 2,
"no-else-return": 1,
"no-floating-decimal": 2,
"no-process-env": 1,
"no-self-compare": 2,
"no-void": 2,
"radix": 2,
"vars-on-top": 2,
"wrap-iife": [2, "inside"],
"no-undefined": 2,
"wrap-iife": [ 2, "inside" ],
"brace-style": [2, "1tbs", {
"allowSingleLine": false
}],
"comma-style": [2, "last"],
"consistent-this": [2, "that"],
"eol-last": true,
"func-style": [2, "expression"],
"max-nested-callbacks": [2, 3],
"brace-style": [ 2, "1tbs", { "allowSingleLine": false } ],
"comma-style": [ 2, "last" ],
"consistent-this": [ 1, "that" ],
"func-style": [ 2, "expression" ],
"max-nested-callbacks": [ 1, 4 ],
"no-nested-ternary": 2,
"no-lonely-if": 2,
"no-multiple-empty-lines": [1, {
"max": 2
}],
"quotes": [1, "single", "avoid-escape"],
"space-after-keywords": [2, "always"],
"space-before-blocks": [2, "always"],
"space-in-brackets": [2, "always"],
"space-in-parens": [2, "never"],
"space-unary-word-ops": 2,
"spaced-line-comment": [2, "always"],
"no-lonely-if": 1,
"no-multiple-empty-lines": [ 1, { "max": 2 } ],
"no-nested-ternary": 2,
"operator-assignment": [ 2, "always" ],
"quotes": [ 2, "single", "avoid-escape" ],
"space-after-function-name": [ 2, "never" ],
"space-after-keywords": [ 2, "always", { "checkFunctionKeyword": true } ],
"space-before-blocks": [ 2, "always" ],
"space-in-brackets": [ 2, "always" ],
"space-in-parens": [ 2, "never" ],
"spaced-line-comment": [ 2, "always" ],
"wrap-regex": 2,
"max-len": [2, 120],
"max-depth": [ 1, 4 ],
"max-len": [ 1, 120 ],
"no-bitwise": 2,
"no-plusplus": 2
}
}

@ -19,8 +19,6 @@
_srcs
log
tmp
node_modules
bower_components
# OS or editor folders and temporary and other files
.DS_Store

@ -17,4 +17,5 @@ npm install -g jsonlint
npm install -g npm-check-updates
npm install -g recursive-blame
npm install -g stylestats
npm install -g svgo
npm install -g vtop

@ -33,6 +33,7 @@ NeoBundle 'altercation/vim-colors-solarized'
NeoBundle 'beyondwords/vim-twig'
NeoBundle 'christoomey/vim-tmux-navigator'
NeoBundle 'editorconfig/editorconfig-vim'
NeoBundle 'ekalinin/Dockerfile.vim'
NeoBundle 'elzr/vim-json'
NeoBundle 'gcmt/wildfire.vim'
NeoBundle 'godlygeek/tabular'
@ -99,6 +100,10 @@ set ttyfast " faster terminal usage
set ttymouse=xterm2 " xterm/tmux compatible mouse
set virtualedit=all " every mode active from v V to StrgV
set visualbell " don't flicker
set complete-=i " dont complete from files
set nrformats-=octal " nobody uses octal anyway
set display+=lastline " shorten long lastlines
set formatoptions+=j " Delete comment character when joining commented lines
"======================================================================

@ -31,10 +31,15 @@ export DISABLE_AUTO_TITLE=true
export GREP_OPTIONS='--color=auto'
export GREP_COLOR='1;32'
## pager
# pager
export PAGER="less"
export LESS="-R"
export LC_CTYPE=$LANG
# ruby
export RBENV_VERSION="2.1.5"
# docker
export DOCKER_HOST=tcp://192.168.59.103:2376
export DOCKER_CERT_PATH=/Users/webgefrickel/.boot2docker/certs/boot2docker-vm
export DOCKER_TLS_VERIFY=1

Loading…
Cancel
Save