Skip to content

Commit

Permalink
added install script, .gdbinit; updated .bashrc and .tmux.conf
Browse files Browse the repository at this point in the history
  • Loading branch information
fabuzaid21 committed Aug 2, 2017
1 parent 6f90232 commit ef7d5d1
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 2 deletions.
3 changes: 1 addition & 2 deletions .bashrc
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 6 additions & 0 deletions .gdbinit
Original file line number Diff line number Diff line change
@@ -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
1 change: 1 addition & 0 deletions .tmux.conf
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
set -g default-command bash
set -g history-limit 50000
# remap prefix to Control + a
set -g prefix C-a
Expand Down
15 changes: 15 additions & 0 deletions install.sh
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit ef7d5d1

Please sign in to comment.