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
############################################################################ | |
# # | |
# ------- Useful Docker Aliases -------- # | |
# # | |
# # Installation : # | |
# copy/paste these lines into your .bashrc or .zshrc file or just # | |
# type the following in your current shell to try it out: # | |
# wget -O - https://gist.githubusercontent.com/jgrodziski/9ed4a17709baad10dbcd4530b60dfcbb/raw/d84ef1741c59e7ab07fb055a70df1830584c6c18/docker-aliases.sh | bash | |
# # | |
# # Usage: # |
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
# Use 'tmux list-keys' to see all the key bindings | |
#### GOOD STUFF comes from here #### | |
# https://github.com/gpakosz/.tmux/blob/master/.tmux.conf | |
# -- general ------------------------------------------------------------------- | |
# Set Terminal colors; enable terminal compability | |
### This is the article you would want to be reading | |
# https://github.com/tmux/tmux/issues/696 | |
set -g default-shell $SHELL | |
# set -g default-terminal "xterm-256color" |
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
" General {{{ | |
set mouse=nv " Disable mouse in command-line mode | |
set modeline " automatically setting options from modelines | |
set lazyredraw | |
set report=0 " Don't report on line changes | |
set errorbells " Trigger bell on error | |
set visualbell " Use visual bell instead of beeping | |
set hidden " hide buffers when abandoned instead of unload | |
set fileformats=unix,dos,mac " Use Unix as the standard file type | |
set magic " For regular expressions turn magic on |
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
# Add this to your bashrc to get reopen the same screen whenever SSH | |
# # alias dev="screen -DR dev" | |
# for esc to work with vim | |
maptimeout 5 | |
# this is needed for term colors to work | |
term screen-256color | |
# term screen |
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
// Place your key bindings in this file to override the defaults | |
[ | |
{ | |
"key": "ctrl+h", | |
"command": "workbench.action.navigateLeft" | |
}, | |
{ | |
"key": "ctrl+l", | |
"command": "workbench.action.navigateRight", |
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
{ | |
"window.menuBarVisibility": "default", | |
"editor.fontSize": 12, | |
"window.zoomLevel": 0, | |
"editor.minimap.enabled": false, | |
"breadcrumbs.enabled": true, | |
"workbench.activityBar.visible": false, | |
"workbench.statusBar.visible": true, | |
"workbench.sideBar.location": "left", | |
"zenMode.hideStatusBar": false, |
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
$0=10 | |
$1=25 | |
$2=0 | |
$3=3 | |
$4=0 | |
$5=1 | |
$6=0 | |
$10=0 | |
$11=0.010 | |
$12=0.002 |
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
[global] | |
trusted-host = pypi.python.org | |
pypi.org | |
files.pythonhosted.org | |
proxy = http://[domain name]%5C[username]:[password]@[proxy address]:[proxy port] |
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
[core] | |
editor = gvim | |
excludesfile = /home/hle/.gitignore | |
autocrlf = input | |
safecrlf = false | |
[merge] | |
ff = only | |
tool = gvimdiff | |
conflictstyle = diff3 |
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
#!/bin/sh | |
exec "/cygdrive/c/Program Files (x86)/Vim/vim80/gvim.exe" "$@" |
NewerOlder