|
| 1 | +# Configuration file for the delve debugger. |
| 2 | + |
| 3 | +# This is the default configuration file. Available options are provided, but disabled. |
| 4 | +# Delete the leading hash mark to enable an item. |
| 5 | + |
| 6 | +# Uncomment the following line and set your preferred ANSI color for source |
| 7 | +# line numbers in the (list) command. The default is 34 (dark blue). See |
| 8 | +# https://en.wikipedia.org/wiki/ANSI_escape_code#3/4_bit |
| 9 | +# source-list-line-color: "\x1b[34m" |
| 10 | + |
| 11 | +# Uncomment the following lines to change the colors used by syntax highlighting. |
| 12 | +# source-list-keyword-color: "\x1b[0m" |
| 13 | +# source-list-string-color: "\x1b[92m" |
| 14 | +# source-list-number-color: "\x1b[0m" |
| 15 | +# source-list-comment-color: "\x1b[95m" |
| 16 | +# source-list-arrow-color: "\x1b[93m" |
| 17 | + |
| 18 | +# Uncomment to change the number of lines printed above and below cursor when |
| 19 | +# listing source code. |
| 20 | +# source-list-line-count: 5 |
| 21 | + |
| 22 | +# Provided aliases will be added to the default aliases for a given command. |
| 23 | +aliases: |
| 24 | + # command: ["alias1", "alias2"] |
| 25 | + |
| 26 | +# Define sources path substitution rules. Can be used to rewrite a source path stored |
| 27 | +# in program's debug information, if the sources were moved to a different place |
| 28 | +# between compilation and debugging. |
| 29 | +# Note that substitution rules will not be used for paths passed to "break" and "trace" |
| 30 | +# commands. |
| 31 | +substitute-path: |
| 32 | + # - {from: path, to: path} |
| 33 | + |
| 34 | +# Maximum number of elements loaded from an array. |
| 35 | +# max-array-values: 64 |
| 36 | + |
| 37 | +# Maximum loaded string length. |
| 38 | +max-string-len: 1024 |
| 39 | + |
| 40 | +# Output evaluation. |
| 41 | +# max-variable-recurse: 1 |
| 42 | + |
| 43 | +# Uncomment the following line to make the whatis command also print the DWARF location expression of its argument. |
| 44 | +# show-location-expr: true |
| 45 | + |
| 46 | +# Allow user to specify output syntax flavor of assembly, one of this list "intel"(default), "gnu", "go". |
| 47 | +# disassemble-flavor: intel |
| 48 | + |
| 49 | +# List of directories to use when searching for separate debug info files. |
| 50 | +debug-info-directories: ["/usr/lib/debug/.build-id"] |
0 commit comments