mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-03 12:27:26 -05:00
completion/company: add +tng flag & support
This commit is contained in:
@ -25,7 +25,19 @@
|
|||||||
:when (featurep! +auto)
|
:when (featurep! +auto)
|
||||||
:defer 2
|
:defer 2
|
||||||
:after-call post-self-insert-hook
|
:after-call post-self-insert-hook
|
||||||
:config (setq company-idle-delay 0.2))
|
:config (setq company-idle-delay 0.1))
|
||||||
|
|
||||||
|
|
||||||
|
(def-package! company-tng
|
||||||
|
:when (featurep! +tng)
|
||||||
|
:defer 2
|
||||||
|
:after-call post-self-insert-hook
|
||||||
|
:config
|
||||||
|
(add-to-list 'company-frontends 'company-tng-frontend)
|
||||||
|
(define-key! company-active-map
|
||||||
|
[return] nil
|
||||||
|
[tab] #'company-select-next
|
||||||
|
[backtab] #'company-select-previous))
|
||||||
|
|
||||||
|
|
||||||
(def-package! company-prescient
|
(def-package! company-prescient
|
||||||
|
Reference in New Issue
Block a user