From f34ad2e08a60312bd2d32833bf257e7d8fe806b2 Mon Sep 17 00:00:00 2001 From: Samir Benmendil Date: Mon, 5 Oct 2020 14:24:12 +0100 Subject: [PATCH] cgdb: remove config --- Makefile | 1 - cgdb/.gitignore | 2 -- cgdb/cgdbrc | 30 ------------------------------ 3 files changed, 33 deletions(-) delete mode 100644 cgdb/.gitignore delete mode 100644 cgdb/cgdbrc diff --git a/Makefile b/Makefile index 8322336..e08bed2 100644 --- a/Makefile +++ b/Makefile @@ -31,7 +31,6 @@ gdb: mkdir $(XDG_DATA_HOME)/gdb ln -sfT $(APATH)/gdb $(XDG_CONFIG_HOME)/gdb ln -sfT $(APATH)/gdbinit ~/.gdbinit - ln -sfT $(APATH)/cgdb ~/.cgdb .PHONY: gdb git: $(XDG_CONFIG_HOME) diff --git a/cgdb/.gitignore b/cgdb/.gitignore deleted file mode 100644 index 3478386..0000000 --- a/cgdb/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -logs -readline_history.txt diff --git a/cgdb/cgdbrc b/cgdb/cgdbrc deleted file mode 100644 index fa2868a..0000000 --- a/cgdb/cgdbrc +++ /dev/null @@ -1,30 +0,0 @@ -# set autosourcereload -# set cgdbmodekey=ESC -# set color -# set debugwincolor -# set nodisasm -# set executinglinedisplay=longarrow -set hlsearch -set ignorecase -# set selectedlinedisplay=block -# set showmarks -# set noshowdebugcommands -# set syntax=on -# set timeout -# set timeoutlen=1000 -# set ttimeout -# set ttimeoutlen=100 -set tabstop=4 -# set winminheight=0 -# set winminwidth=0 -# set winsplit=even -# set winsplitorientation=horizontal -# set wrapscan - -map r :run -map c :continue -map f :finish -map n :next -map s :step - -map p ip -- 2.48.1