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
# alias | |
alias l='ls -ClA' | |
alias 'grep=grep --color=auto' | |
alias rsync='rsync -rvzpP --chmod=Du=rwx,Dgo=rx,Fu=rw,Fgo=r' | |
alias rsyncr='rsync -rvzpP --chmod=Du=rwx,Dgo=rx,Fu=rw,Fgo=r -e "ssh -p 31415"' | |
alias sshrsub='ssh -R 52698:localhost:52698' | |
alias rm='rm -i' | |
alias mv='mv -i' | |
alias cp='cp -i' | |
alias cls='printf "\033c"' |
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
[user] | |
name = Hoang Huynh | |
email = | |
[branch] | |
autosetupmerge = true | |
[core] | |
editor = vim | |
excludesfile = /Users/hoang/.gitignore | |
[color] | |
ui = always |
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
Show hidden characters
[ | |
{ "keys": ["ctrl+shift+up"], "command": "swap_line_up" }, | |
{ "keys": ["ctrl+shift+down"], "command": "swap_line_down" }, | |
{ "keys": ["ctrl+alt+up"], "command": "select_lines", "args": {"forward": false} }, | |
{ "keys": ["ctrl+alt+down"], "command": "select_lines", "args": {"forward": true} } | |
] |
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
$tablet-width: 768px; | |
$phone-width: 320px; | |
$desktop-width: 1024px; | |
$widescreen-width: 1400px; | |
@mixin tablet { | |
@media (min-width: #{$tablet-width}) and (max-width: #{$desktop-width - 1px}) { | |
@content; | |
} |
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
map D scrollPageUp | |
let blacklists = ["https://mail.google.com/*","https://www.facebook.com/*"] |