Remove realgud

This commit is contained in:
Alexander Rosenberg 2024-01-10 05:02:27 -08:00
parent 8f020ea02e
commit 2bc9683703
Signed by: Zander671
GPG Key ID: 5FD0394ADBD72730

22
init.el
View File

@ -492,18 +492,6 @@ visual states."
"--header-insertion=never" "--pch-storage=memory" "--header-insertion=never" "--pch-storage=memory"
"--malloc-trim" "--function-arg-placeholders")))) "--malloc-trim" "--function-arg-placeholders"))))
;; realgud
(use-package realgud
:hook (realgud-short-key-mode . my/-realgud-setup-shortkey-mode)
:bind (:map realgud:shortkey-mode-map
("a" . realgud:cmd-frame))
:init
(setq realgud-srcbuf-lock t
realgud-short-key-on-tracing? t)
(defun my/-realgud-setup-shortkey-mode ()
(when realgud-short-key-mode
(keymap-local-set "C-d" realgud:shortkey-mode-map))))
;; dumb-jump ;; dumb-jump
(use-package dumb-jump (use-package dumb-jump
:init :init
@ -624,12 +612,6 @@ COMMAND and COMINT are like `compile'."
(use-package c-ts-mode (use-package c-ts-mode
:after evil :after evil
:hook ((c-ts-mode c++-ts-mode) . eglot-ensure) :hook ((c-ts-mode c++-ts-mode) . eglot-ensure)
:bind (:map c-ts-mode-map
("C-c d" . realgud:gdb)
:map c++-ts-mode-map
("C-c d" . realgud:gdb)
:map objc-mode-map
("C-c d" . realgud:gdb))
:init :init
(setq-default c-ts-mode-indent-offset 4) (setq-default c-ts-mode-indent-offset 4)
:config :config
@ -674,9 +656,7 @@ COMMAND and COMINT are like `compile'."
(use-package rust-mode) (use-package rust-mode)
(use-package rust-ts-mode (use-package rust-ts-mode
:ensure nil :ensure nil
:hook (rust-ts-mode . eglot-ensure) :hook (rust-ts-mode . eglot-ensure))
:bind (:map rust-ts-mode-map
("C-c d" . realgud:gdb)))
;; markdown ;; markdown
(use-package markdown-mode (use-package markdown-mode