forked from FG42/FG42
1
0
Fork 0

Disable any other completion backend beside capf

This commit is contained in:
Sameer Rahmani 2024-04-28 20:30:23 +01:00
parent 87c5b868db
commit edcf6b9b0a
Signed by: lxsameer
GPG Key ID: 8741FACBF412FFA5
1 changed files with 2 additions and 4 deletions

View File

@ -34,7 +34,7 @@
("M-p" . company-select-previous)
("TAB" . company-complete-common-or-cycle)
("M-d" . company-show-doc-buffer))
:init
;; Use Company for completion
(setq company-show-numbers t)
@ -46,9 +46,7 @@
:config
(setq-default company-backends
'((company-capf :with company-yasnippet :separate)
(company-keywords :separate)
company-files))
'(company-capf (company-keywords :separate) company-files))
(bind-key [remap completion-at-point] #'company-complete company-mode-map))