diff --git a/.bashrc b/.bashrc index b695d79..85d8b87 100644 --- a/.bashrc +++ b/.bashrc @@ -13,8 +13,7 @@ export PS1='\u@\h \[\033[1;33m\]\w\[\033[0m\]$(parse_git_branch)$ ' source ~/.git-completion.bash -# source /usr/local/bin/virtualenvwrapper.sh - +export PATH=$HOME/packages/bin:$HOME/anaconda2/bin:$PATH export C_INCLUDE_PATH=$HOME/packages/include:$C_INCLUDE_PATH export PKG_CONFIG_PATH=$HOME/packages/lib/pkgconfig/:$PKG_CONFIG_PATH export LD_LIBRARY_PATH=$HOME/packages/lib:$LD_LIBRARY_PATH diff --git a/.gdbinit b/.gdbinit new file mode 100644 index 0000000..effe6bd --- /dev/null +++ b/.gdbinit @@ -0,0 +1,6 @@ +set print pretty on +set print object on +set print static-members on +set print vtbl on +set print demangle on +set demangle-style gnu-v3 diff --git a/.tmux.conf b/.tmux.conf index b4fe68c..d5765e3 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -1,3 +1,4 @@ +set -g default-command bash set -g history-limit 50000 # remap prefix to Control + a set -g prefix C-a diff --git a/install.sh b/install.sh new file mode 100755 index 0000000..77e1f13 --- /dev/null +++ b/install.sh @@ -0,0 +1,15 @@ +#! /usr/bin/env bash + +set -x + +CURR_DIR=`pwd` +cd + +ln -sfn ${CURR_DIR}/.bashrc .bashrc.user +ln -sfn ${CURR_DIR}/.gdbinit +ln -sfn ${CURR_DIR}/.git-completion.bash +ln -sfn ${CURR_DIR}/.gitconfig +ln -sfn ${CURR_DIR}/.inputrc +ln -sfn ${CURR_DIR}/.pyrc +ln -sfn ${CURR_DIR}/.tmux.conf +