mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
Added company reftex support.
This commit is contained in:
@ -205,6 +205,11 @@
|
||||
(make-local-variable 'company-backends)
|
||||
(company-auctex-init)))
|
||||
|
||||
(def-package! company-reftex
|
||||
:after reftex
|
||||
:config
|
||||
(set-company-backend! 'reftex-mode 'company-reftex-labels 'company-reftex-citations))
|
||||
|
||||
;; Nicely indent lines that have wrapped when visual line mode is activated
|
||||
(def-package! adaptive-wrap
|
||||
:hook (LaTeX-mode . adaptive-wrap-prefix-mode)
|
||||
|
@ -15,7 +15,8 @@
|
||||
;; Features according to other user selected options
|
||||
|
||||
(when (featurep! :completion company)
|
||||
(package! company-auctex))
|
||||
(package! company-auctex)
|
||||
(package! company-reftex))
|
||||
(when (featurep! :completion ivy)
|
||||
(package! ivy-bibtex))
|
||||
(when (featurep! :completion helm)
|
||||
|
Reference in New Issue
Block a user