File tree 2 files changed +12
-0
lines changed
2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ ln -s $DOTDIR/tmux.conf $HOMEDIR/.tmux.conf
27
27
ln -s $DOTDIR /tmux-powerlinerc $HOMEDIR /.tmux-powerlinerc
28
28
ln -s $DOTDIR /tm $HOMEDIR /bin/tm
29
29
ln -s $DOTDIR /ncmpcpp.config $HOMEDIR /.ncmpcpp/config
30
+ ln -s $DOTDIR /pdbrc.py $HOMEDIR /.pdbrc.py
30
31
NICKSERVPASS=` cat ~ /.nickserv`
31
32
BOUNCERPASS=` cat ~ /.anaproy`
32
33
cat $HOMEDIR /.irssi/config.masked | sed -e " s/NICKSERVPASS/$NICKSERVPASS /" -e " s/BOUNCERPASS/$BOUNCERPASS /" > $HOMEDIR /.irssi/config
Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments