28 lines
865 B
EmacsLisp
28 lines
865 B
EmacsLisp
(setq ycmd-packages
|
|
'(
|
|
(company-ycmd :toggle (configuration-layer/package-usedp 'company))
|
|
(flycheck-ycmd :toggle (configuration-layer/package-usedp 'flycheck))
|
|
ycmd
|
|
))
|
|
|
|
(unless (boundp 'ycmd-server-command)
|
|
(message (concat "YCMD won't work unless you set the ycmd-server-command "
|
|
"variable to the path to a ycmd install.")))
|
|
|
|
(defun ycmd/init-company-ycmd ()
|
|
(use-package company-ycmd
|
|
:defer t
|
|
:commands company-ycmd))
|
|
|
|
(defun ycmd/init-flycheck-ycmd ()
|
|
(use-package flycheck-ycmd
|
|
:defer t
|
|
:init (add-hook 'ycmd-mode-hook 'flycheck-ycmd-setup)))
|
|
|
|
(defun ycmd/init-ycmd ()
|
|
(use-package ycmd
|
|
:defer t
|
|
:init
|
|
(unless (boundp 'ycmd-global-config)
|
|
(let ((dir (configuration-layer/get-layer-property 'ycmd :dir)))
|
|
(setq-default ycmd-global-config (concat dir "global_conf.py"))))))
|