mirror of
https://codeberg.org/andyscott/dotfiles.git
synced 2024-11-09 14:00:47 -05:00
Merge branch 'main' into single-monitor
This commit is contained in:
commit
27ad473d88
1 changed files with 11 additions and 6 deletions
|
@ -287,7 +287,12 @@
|
|||
(eval-when-compile
|
||||
(require 'cl-lib))
|
||||
(require 'dap-python)
|
||||
(require 'dap-node))
|
||||
(require 'dap-node)
|
||||
:bind
|
||||
(:map dap-mode-map
|
||||
("<f5>" . dap-mode)
|
||||
("<f10>" . dap-next)
|
||||
("<f11>" . 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)
|
||||
("<tab>" . company-complete-selection)
|
||||
("C-n" . company-select-next)
|
||||
("C-p" . company-select-previous)))
|
||||
("TAB" . company-complete-selection)
|
||||
("<tab>" . company-complete-selection)
|
||||
("C-n" . company-select-next)
|
||||
("C-p" . company-select-previous)))
|
||||
|
||||
;;; Languages
|
||||
|
||||
|
|
Loading…
Reference in a new issue