You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.2 KiB
36 lines
1.2 KiB
;; Paket dauert zu laden,
|
|
;; hier wird Laden verzögert bis Emacs idle ist
|
|
|
|
(use-package company
|
|
:ensure t
|
|
:config
|
|
(add-to-list 'company-backends 'company-elisp)
|
|
(setq company-minimum-prefix-length 2
|
|
company-tooltip-align-annotation t
|
|
company-tooltip-flip-when-above t
|
|
company-require-match nil
|
|
company-dabbrev-code-other-buffers t
|
|
company-dabbrev--minimum-length 2
|
|
company-show-numbers t)
|
|
;; company-occurrence-weight-function)
|
|
(setq company-idle-delay 0.3)
|
|
(global-company-mode t))
|
|
|
|
(use-package company-statistics
|
|
:ensure t
|
|
:config
|
|
(company-statistics-mode 1))
|
|
|
|
(use-package company-quickhelp
|
|
:ensure t
|
|
:config
|
|
(company-quickhelp-mode 1))
|
|
|
|
(use-package company-dict
|
|
:ensure t
|
|
:config
|
|
(add-to-list 'company-backends 'company-dict)
|
|
(setq company-dict-dir (concat user-emacs-directory "dict/")))
|
|
|
|
|
|
(provide 'plugin-company-mode)
|