Another copy of my dotfiles. Because I don't completely trust GitHub.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
647 B

  1. source /usr/share/pwndbg/gdbinit.py
  2. source /home/yigit/.local/share/splitmind/gdbinit.py
  3. python
  4. import splitmind
  5. (splitmind.Mind()
  6. .tell_splitter(show_titles=True)
  7. .tell_splitter(set_title="Main")
  8. .right(display="backtrace", size="25%")
  9. .above(of="main", display="disasm", size="80%", banner="top")
  10. .show("code", on="disasm", banner="none")
  11. .right(cmd='tty; tail -f /dev/null', size="65%", clearing=False)
  12. .tell_splitter(set_title='Input / Output')
  13. .above(display="stack", size="75%")
  14. .above(display="legend", size="25")
  15. .show("regs", on="legend")
  16. .below(of="backtrace", cmd="ipython", size="30%")
  17. ).build(nobanner=True)
  18. end