You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
212 B
EmacsLisp
9 lines
212 B
EmacsLisp
2 years ago
|
(require 'company)
|
||
|
|
||
|
(setq company-idle-delay 0
|
||
|
company-clang-executable "/usr/lib/llvm/11/bin/clang"
|
||
|
company-clang-insert-arguments nil
|
||
|
company-minimum-prefix-length 1)
|
||
|
|
||
2 years ago
|
(provide 'init-company)
|