Skip to content

Commit 390b50e

Browse files
committed
added
1 parent 677c8b6 commit 390b50e

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

install.sh

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ ln -s $DOTDIR/tmux.conf $HOMEDIR/.tmux.conf
2727
ln -s $DOTDIR/tmux-powerlinerc $HOMEDIR/.tmux-powerlinerc
2828
ln -s $DOTDIR/tm $HOMEDIR/bin/tm
2929
ln -s $DOTDIR/ncmpcpp.config $HOMEDIR/.ncmpcpp/config
30+
ln -s $DOTDIR/pdbrc.py $HOMEDIR/.pdbrc.py
3031
NICKSERVPASS=`cat ~/.nickserv`
3132
BOUNCERPASS=`cat ~/.anaproy`
3233
cat $HOMEDIR/.irssi/config.masked | sed -e "s/NICKSERVPASS/$NICKSERVPASS/" -e "s/BOUNCERPASS/$BOUNCERPASS/" > $HOMEDIR/.irssi/config

pdbrc.py

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
from pdb import DefaultConfig
2+
3+
class Config(DefaultConfig):
4+
"""Config options for pdb++
5+
"""
6+
# fancy prompt
7+
prompt = "pdb++> "
8+
# change the color to "inverse" so that all the colors show through
9+
current_line_color = 7
10+
# make sticky the default mode
11+
sticky_by_default = True

0 commit comments

Comments
 (0)