diff --git a/install.sh b/install.sh index 320db6d..3fac45f 100755 --- a/install.sh +++ b/install.sh @@ -37,6 +37,10 @@ function setup_vim { (cd ~/.vim_runtime/my_plugins && git add * && git commit -m "bretello dotfiles") } +function setup_pdbprc { + ln -s $DOTFILES/pdbrc.py $HOME/.pdbrc.py +} + # Add an ssh config file with: # - Connection multiplexer for faster multiple connections # - Keep connections alive (avoid timeout disconnections) @@ -211,6 +215,8 @@ function brethil_dotfiles_setup { create_ssh_config # git config setup_git + # pdbpp rc + setup_pdbprc # Symlink brethil.zsh-theme ln -s $DOTFILES/brethil.zsh-theme $HOME/.antigen/bundles/robbyrussell/oh-my-zsh/themes/ # TODO: improve this diff --git a/pdbrc.py b/pdbrc.py new file mode 100644 index 0000000..78f6d9d --- /dev/null +++ b/pdbrc.py @@ -0,0 +1,4 @@ +import pdb + +class Config(pdb.DefaultConfig): + sticky_by_default = True