Skip to content

Commit

Permalink
Misc tweaks.
Browse files Browse the repository at this point in the history
  • Loading branch information
Brandon Amos committed Jun 7, 2018
1 parent a8e837d commit 9e6368f
Show file tree
Hide file tree
Showing 6 changed files with 112 additions and 8 deletions.
88 changes: 88 additions & 0 deletions .ispell_english
@@ -0,0 +1,88 @@
adam
aggarwal
asmuth
AxEnt
AxTask
BA
bayer
bayesian
behaviour
bengio
bojarski
calandra
cao
chung
ciobanu
CorNoise
corrector's
de
deisenroth
Dexterous
DGE
DOF
dosovitskiy
Dougal
downey
edmonds
fraccaro
fu
gao
Gaussians
ghavamzadeh
haber
haptic
haptics
HAPTIX
heess
hyperparameters
IndNoise
ive
jain
johannes
karl
kingma
krishnan
lederman
liuhaptic
loeb
LSTM
mackay
martinez
martius
Mathematica
MLP
MLPs
modelled
modelling
Mohamed
MPC
MPL
MuJoCo
mujoco
na
navarro
nyi
Ornstein
pathak
pilco
plappert
pre
PreCo
predictor's
RandLSTM
regularized
Renyi
RL
rollout
rollouts
schmidhuber
stachniss
su
sur
Uhlenbeck
variational
venkatraman
vestibular
website
yni
zheng
6 changes: 6 additions & 0 deletions .spacemacs.d/snippets/python-mode/inm
@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# name: inm
# key: inm
#
# --
if __name__ == '__main__':
5 changes: 3 additions & 2 deletions .spacemacs.d/snippets/python-mode/ip
@@ -1,7 +1,8 @@
# -*- mode: snippet -*-
# name: ip
# key: ip
# --
#
# import IPython, sys; IPython.embed(); sys.exit(-1)
import ipdb, sys; ipdb.set_trace(); sys.exit(-1)
# import ipdb; ipdb.set_trace()
# --
import ipdb; ipdb.set_trace()
6 changes: 6 additions & 0 deletions .spacemacs.d/snippets/python-mode/ip2
@@ -0,0 +1,6 @@
# -*- mode: snippet -*-
# name: ip2
# key: ip2
#
# --
import IPython, sys; IPython.embed(); sys.exit(-1)
8 changes: 4 additions & 4 deletions .tmux-osx.conf
Expand Up @@ -4,9 +4,9 @@ set -g default-command "reattach-to-user-namespace -l zsh"
setw -g mode-keys vi

# Setup 'v' to begin selection as in Vim
bind-key -t vi-copy v begin-selection
bind-key -t vi-copy y copy-pipe "reattach-to-user-namespace pbcopy"
# bind-key -t vi-copy v begin-selection
# bind-key -t vi-copy y copy-pipe "reattach-to-user-namespace pbcopy"

# Update default binding of `Enter` to also use copy-pipe
unbind -t vi-copy Enter
bind-key -t vi-copy Enter copy-pipe "reattach-to-user-namespace pbcopy"
# unbind -t vi-copy Enter
# bind-key -t vi-copy Enter copy-pipe "reattach-to-user-namespace pbcopy"
7 changes: 5 additions & 2 deletions .zshrc
Expand Up @@ -17,8 +17,8 @@ REPOS=$HOME/repos
pathadd $REPOS/shell-scripts
pathadd $REPOS/python-scripts/python2.7
pathadd $REPOS/python-scripts/python3
command -v ruby >/dev/null 2>&1 && \
pathadd $(ruby -rubygems -e "puts Gem.user_dir")/bin
# command -v ruby >/dev/null 2>&1 && \
# pathadd $(ruby -rubygems -e "puts Gem.user_dir")/bin
unset REPOS

autoload -U zmv
Expand Down Expand Up @@ -75,3 +75,6 @@ bindkey '^e' edit-command-line

export GPG_TTY=$(tty)
export GPG_AGENT_INFO=$HOME/.gnupg/S.gpg-agent

# Add RVM to PATH for scripting. Make sure this is the last PATH variable change.
export PATH="$PATH:$HOME/.rvm/bin"

0 comments on commit 9e6368f

Please sign in to comment.