Compare commits

...

3 Commits

Author SHA1 Message Date
aaec26e389
rc/gdbinit: add handle SIGPIPE nostop noprint pass 2022-04-18 18:02:03 +03:00
4ff38af7e0
README.md: note that init files go to rc/ too
For whatever reason I have both, but xinitrc is also in rc (while xresources is in conf/?)
2022-04-18 17:23:36 +03:00
ab694f402b
rc: add gdbinit
Resolves: #130
2022-04-18 17:22:31 +03:00
2 changed files with 10 additions and 1 deletions

View File

@ -10,4 +10,4 @@ Directories explained
* conf — config files like .tmux.conf
* etc — /etc/
* gpg — GNU Privacy Guard config files, ~/.gnupg/
* rc — bashrc, zshrc, vimrc…
* rc — bashrc, zshrc, vimrc and apparently \*init files

9
rc/gdbinit Normal file
View File

@ -0,0 +1,9 @@
# This is ~/.gdbinit
# Overwrite logs when writing
set logging overwrite on
# Enable logging by default, default location is ~/gdb.txt
set logging on
# ZNC and Kismet advice this
handle SIGPIPE nostop noprint pass
# Automatic debuginfo download on Fedora?
set debuginfod enabled on