diff --git a/emacs/.emacs.d/config/init-ide.el b/emacs/.emacs.d/config/init-ide.el index 011f106..5c41985 100644 --- a/emacs/.emacs.d/config/init-ide.el +++ b/emacs/.emacs.d/config/init-ide.el @@ -71,12 +71,16 @@ (ansi-color-apply-on-region (point) (point-max))) (add-hook 'compilation-filter-hook 'postprocess-compilation-buffer)) - - ;; Code formatting library (use-package apheleia :straight (apheleia :host github :repo "raxod502/apheleia") :general ("C-c f" #'apheleia-format-buffer)) +;; Debugger interface +(use-package realgud + :defer t + :config + (evil-collection-realgud-setup)) + (provide 'init-ide)