add pdbpp rc

whole-command-tab-completion
bretello 2020-01-27 11:38:26 +01:00
parent a6f86bcb92
commit 2bba55ecf9
2 changed files with 10 additions and 0 deletions

View File

@ -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

4
pdbrc.py 100644
View File

@ -0,0 +1,4 @@
import pdb
class Config(pdb.DefaultConfig):
sticky_by_default = True