diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2022-12-14 19:57:12 +0100 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2022-12-14 19:57:12 +0100 |
| commit | 0468bae575e0c8a870296074f632e47f937c27cb (patch) | |
| tree | 1a29380c764296215ffcdf865246422c319f6545 /.config/gdb/gdbinit | |
| parent | 38caf6ea1b37e6e99f44accb5ff4f9361648ac34 (diff) | |
add gdbinit
Diffstat (limited to '.config/gdb/gdbinit')
| -rw-r--r-- | .config/gdb/gdbinit | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.config/gdb/gdbinit b/.config/gdb/gdbinit new file mode 100644 index 0000000..8add4e8 --- /dev/null +++ b/.config/gdb/gdbinit @@ -0,0 +1,13 @@ +layout src + +set tui border-kind acs +set tui active-border bold +set tui border-mode normal + +set prompt \033[31m gdb> \033[0m + +define soinit + source ~/.config/gdb/gdbinit +end + + |