diff --git a/emacs.d/init.el b/emacs.d/init.el index 4f24c70..293b871 100644 --- a/emacs.d/init.el +++ b/emacs.d/init.el @@ -287,7 +287,12 @@ (eval-when-compile (require 'cl-lib)) (require 'dap-python) - (require 'dap-node)) + (require 'dap-node) + :bind + (:map dap-mode-map + ("" . dap-mode) + ("" . dap-next) + ("" . dap-step-in))) (use-package company :config @@ -298,12 +303,12 @@ (company-tooltip-align-annotations t) :bind (:map company-active-map - ("RET" . nil) + ("RET" . nil) ("[return]" . nil) - ("TAB" . company-complete-selection) - ("" . company-complete-selection) - ("C-n" . company-select-next) - ("C-p" . company-select-previous))) + ("TAB" . company-complete-selection) + ("" . company-complete-selection) + ("C-n" . company-select-next) + ("C-p" . company-select-previous))) ;;; Languages