2017-06-08 11:47:56 +02:00
|
|
|
;;; completion/company/config.el -*- lexical-binding: t; -*-
|
2017-02-19 18:41:26 -05:00
|
|
|
|
2017-02-23 00:06:12 -05:00
|
|
|
(def-package! company
|
2018-05-25 00:46:11 +02:00
|
|
|
:commands (company-complete-common company-manual-begin company-grab-line)
|
2018-04-18 18:22:23 -04:00
|
|
|
:init
|
2017-02-19 18:41:26 -05:00
|
|
|
(setq company-idle-delay nil
|
2018-02-02 15:57:49 -05:00
|
|
|
company-tooltip-limit 14
|
2017-02-19 18:41:26 -05:00
|
|
|
company-dabbrev-downcase nil
|
|
|
|
company-dabbrev-ignore-case nil
|
|
|
|
company-dabbrev-code-other-buffers t
|
|
|
|
company-tooltip-align-annotations t
|
|
|
|
company-require-match 'never
|
2018-04-22 23:41:20 -04:00
|
|
|
company-global-modes
|
2018-05-08 16:18:30 +02:00
|
|
|
'(not comint-mode erc-mode message-mode help-mode gud-mode)
|
2018-04-22 23:41:20 -04:00
|
|
|
company-frontends
|
2018-04-23 02:37:58 -04:00
|
|
|
'(company-pseudo-tooltip-frontend
|
2018-04-22 23:41:20 -04:00
|
|
|
company-echo-metadata-frontend)
|
|
|
|
company-backends
|
2018-06-03 23:27:06 +02:00
|
|
|
'((:separate company-capf company-yasnippet))
|
2017-06-28 16:28:27 +02:00
|
|
|
company-transformers '(company-sort-by-occurrence))
|
2018-04-18 18:22:23 -04:00
|
|
|
:config
|
2017-02-20 20:43:22 -05:00
|
|
|
(global-company-mode +1))
|
2017-02-19 18:41:26 -05:00
|
|
|
|
|
|
|
|
2018-05-14 20:45:47 +02:00
|
|
|
(def-package! company
|
|
|
|
:when (featurep! +auto)
|
2018-05-25 00:46:11 +02:00
|
|
|
:defer 2
|
2018-06-05 11:20:06 +02:00
|
|
|
:after-call post-self-insert-hook
|
2018-05-14 20:45:47 +02:00
|
|
|
:config (setq company-idle-delay 0.2))
|
|
|
|
|
|
|
|
|
2018-04-22 23:41:53 -04:00
|
|
|
(def-package! company-box
|
|
|
|
:when (and EMACS26+ (featurep! +childframe))
|
|
|
|
:hook (company-mode . company-box-mode)
|
2017-02-20 20:43:22 -05:00
|
|
|
:config
|
2018-04-22 23:41:53 -04:00
|
|
|
(setq company-box-backends-colors nil
|
2018-06-27 19:13:54 +02:00
|
|
|
company-box-max-candidates 50
|
|
|
|
company-box-icons-yasnippet (all-the-icons-material "short_text" :face 'all-the-icons-green)
|
|
|
|
company-box-icons-unknown (all-the-icons-material "find_in_page" :face 'all-the-icons-purple)
|
2018-04-22 23:41:53 -04:00
|
|
|
company-box-icons-elisp
|
2018-06-27 19:13:54 +02:00
|
|
|
(list (all-the-icons-material "functions" :face 'all-the-icons-red)
|
2018-04-23 04:24:42 -04:00
|
|
|
(all-the-icons-material "check_circle" :face 'all-the-icons-blue)
|
2018-06-27 19:13:54 +02:00
|
|
|
(all-the-icons-material "stars" :face 'all-the-icons-orange)
|
2018-04-23 04:24:42 -04:00
|
|
|
(all-the-icons-material "format_paint" :face 'all-the-icons-pink))
|
2018-06-27 19:13:54 +02:00
|
|
|
company-box-icons-lsp
|
|
|
|
'((1 . (all-the-icons-material "text_fields" :face 'all-the-icons-green)) ; text
|
|
|
|
(2 . (all-the-icons-material "functions" :face 'all-the-icons-red)) ; method
|
|
|
|
(3 . (all-the-icons-material "functions" :face 'all-the-icons-red)) ; function
|
|
|
|
(4 . (all-the-icons-material "functions" :face 'all-the-icons-red)) ; constructor
|
|
|
|
(5 . (all-the-icons-material "functions" :face 'all-the-icons-red)) ; field
|
|
|
|
(6 . (all-the-icons-material "adjust" :face 'all-the-icons-blue)) ; variable
|
|
|
|
(7 . (all-the-icons-material "class" :face 'all-the-icons-red)) ; class
|
|
|
|
(8 . (all-the-icons-material "settings_input_component" :face 'all-the-icons-red)) ; interface
|
|
|
|
(9 . (all-the-icons-material "view_module" :face 'all-the-icons-red)) ; module
|
|
|
|
(10 . (all-the-icons-material "settings" :face 'all-the-icons-red)) ; property
|
|
|
|
(11 . (all-the-icons-material "straighten" :face 'all-the-icons-red)) ; unit
|
|
|
|
(12 . (all-the-icons-material "filter_1" :face 'all-the-icons-red)) ; value
|
|
|
|
(13 . (all-the-icons-material "plus_one" :face 'all-the-icons-red)) ; enum
|
|
|
|
(14 . (all-the-icons-material "filter_center_focus" :face 'all-the-icons-red)) ; keyword
|
|
|
|
(15 . (all-the-icons-material "short_text" :face 'all-the-icons-red)) ; snippet
|
|
|
|
(16 . (all-the-icons-material "color_lens" :face 'all-the-icons-red)) ; color
|
|
|
|
(17 . (all-the-icons-material "insert_drive_file" :face 'all-the-icons-red)) ; file
|
|
|
|
(18 . (all-the-icons-material "collections_bookmark" :face 'all-the-icons-red)) ; reference
|
|
|
|
(19 . (all-the-icons-material "folder" :face 'all-the-icons-red)) ; folder
|
|
|
|
(20 . (all-the-icons-material "people" :face 'all-the-icons-red)) ; enumMember
|
|
|
|
(21 . (all-the-icons-material "pause_circle_filled" :face 'all-the-icons-red)) ; constant
|
|
|
|
(22 . (all-the-icons-material "streetview" :face 'all-the-icons-red)) ; struct
|
|
|
|
(23 . (all-the-icons-material "event" :face 'all-the-icons-red)) ; event
|
|
|
|
(24 . (all-the-icons-material "control_point" :face 'all-the-icons-red)) ; operator
|
|
|
|
(25 . (all-the-icons-material "class" :face 'all-the-icons-red)))))
|
2017-02-20 20:43:22 -05:00
|
|
|
|
|
|
|
|
2017-02-23 00:06:12 -05:00
|
|
|
(def-package! company-dict
|
2018-05-25 00:46:11 +02:00
|
|
|
:defer t
|
2017-03-02 18:17:40 -05:00
|
|
|
:config
|
|
|
|
(defun +company|enable-project-dicts (mode &rest _)
|
2017-06-29 16:25:37 +02:00
|
|
|
"Enable per-project dictionaries."
|
2017-03-02 18:17:40 -05:00
|
|
|
(if (symbol-value mode)
|
2018-05-28 12:26:03 +02:00
|
|
|
(add-to-list 'company-dict-minor-mode-list mode nil #'eq)
|
2017-03-02 18:17:40 -05:00
|
|
|
(setq company-dict-minor-mode-list (delq mode company-dict-minor-mode-list))))
|
2017-04-17 02:17:10 -04:00
|
|
|
(add-hook 'doom-project-hook #'+company|enable-project-dicts))
|
2017-02-19 18:41:26 -05:00
|
|
|
|