This file contains hidden or 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 ll='ls -la' | |
alias ld='ll | grep '^d'' | |
alias tmkill='tmux kill-session' | |
alias tmux='TERM=xterm-256color tmux' | |
alias lonestar='ssh [email protected]' | |
alias stampede='ssh [email protected]' | |
export TERM=xterm-256color | |
export GOROOT=$HOME/go |
This file contains hidden or 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
<snippet> | |
<content><![CDATA[ | |
from ${1:module} import ${2:sub} as ${3} | |
]]></content> | |
<tabTrigger>from</tabTrigger> | |
<scope>source.python</scope> | |
<description>from_import_as</description> | |
</snippet> |
This file contains hidden or 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
snippet iflen | |
if len(sys.argv) != ${1:N}: | |
print main.__doc__ | |
sys.exit() | |
${2} |
This file contains hidden or 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
snippet combl | |
########################################################################### | |
# ${1:Comment text} | |
########################################################################### | |
${2} |
This file contains hidden or 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
snippet read | |
${1:name} <- read.table("${2:path/to/file}", | |
sep="${3:\t ,}", | |
header=${4:T F}) |
This file contains hidden or 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
color desert | |
filetype plugin on | |
syntax on | |
let mapleader = "," | |
let g:mapleader = "," | |
let g:slime_target = "tmux" | |
let python_highlight_all = 1 | |
map <F12> :let &background = ( &background == "dark"? "light" : "dark" )<CR> |
This file contains hidden or 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
# CC0, a GPL-compliant copyright; this code is released to the public domain. | |
# See <http://creativecommons.org/publicdomain/zero/1.0/> | |
# | |
# Written in MONTH YEAR by AUTHOR(S), email | |
# | |
This file contains hidden or 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
# Config file for macfanctl daemon | |
# | |
# Note: 0 < temp_X_floor < temp_X_ceiling | |
# 0 < fan_min < 6200 | |
fan1_min: 2000 | |
temp_avg_floor: 35 | |
temp_avg_ceiling: 45 |
This file contains hidden or 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
<snippet> | |
<content><![CDATA[ | |
# ${1:summary} | |
# | |
# USAGE: | |
# ${2:fx_call}(${3:vars}) | |
# | |
# ARGS: | |
# ${4:args} | |
# |
This file contains hidden or 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
<snippet> | |
<content><![CDATA[ | |
${1:variable} <- cor(${2:var/mat}, ${3:var,} use=${4:"complete.obs"})]]></content> | |
<tabTrigger>cor</tabTrigger> | |
<scope> source.r, source.rd.console</scope> | |
<description>correlation</description> | |
</snippet> |