-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added install script, .gdbinit; updated .bashrc and .tmux.conf
- Loading branch information
1 parent
6f90232
commit ef7d5d1
Showing
4 changed files
with
23 additions
and
2 deletions.
There are no files selected for viewing
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
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
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 |
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
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 | ||
|
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
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 | ||
|