diff options
author | John Turner <jturner.usa@gmail.com> | 2022-10-07 03:10:21 -0400 |
---|---|---|
committer | John Turner <jturner.usa@gmail.com> | 2022-10-07 03:10:21 -0400 |
commit | 6fac8a28da9bf30da71941340505c2316d0db5a3 (patch) | |
tree | f7d840005abe0195e093fa0db6f1e44ecba0ba8d /init/company | |
parent | ceaa741cfb13938aa359f33f926ccdcb2689f303 (diff) | |
download | emacs.d-6fac8a28da9bf30da71941340505c2316d0db5a3.tar.gz |
changed the config-* prefix to init-* for all of the init files
Diffstat (limited to 'init/company')
-rw-r--r-- | init/company/init-company.el | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/init/company/init-company.el b/init/company/init-company.el new file mode 100644 index 0000000..633efe7 --- /dev/null +++ b/init/company/init-company.el @@ -0,0 +1,8 @@ +(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) + +(provide 'init-company) |