diff options
| author | Loek Le Blansch <loek@pipeframe.xyz> | 2026-01-16 20:03:07 +0100 |
|---|---|---|
| committer | Loek Le Blansch <loek@pipeframe.xyz> | 2026-01-16 20:03:07 +0100 |
| commit | 115ac49aa95caa4e648629f55ae287263a48655c (patch) | |
| tree | a6feb177733475c85e13a5f2e2f43bdd590a5b83 /.config/gdb/gdbinit | |
| parent | cbc28cd4f307804b84e8c96b4717d85f6b0ed008 (diff) | |
Diffstat (limited to '.config/gdb/gdbinit')
| -rw-r--r-- | .config/gdb/gdbinit | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/.config/gdb/gdbinit b/.config/gdb/gdbinit index 919b13a..bf4a25d 100644 --- a/.config/gdb/gdbinit +++ b/.config/gdb/gdbinit @@ -1,9 +1,22 @@ +# load ./gdbinit.py python import sys, os sys.path.append(os.path.join(os.environ["XDG_CONFIG_HOME"], "gdb")) import gdbinit end -alias mk = !mk +# preferences +try set disassembly-flavor intel +set debuginfod enabled off +set confirm off +set extended-prompt \P +set history save on +set history size 10000000 +set history remove-duplicates 100 + +# aliases alias reset = monitor reset +# commands +alias mk = !mk +alias ls = !ls |