Emacs personal configuration
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 line
305B

  1. ;;; package --- Company mode
  2. ;;; Commentary:
  3. ;;; Code:
  4. (require-package 'company)
  5. ;; https://company-mode.github.io/
  6. ;; To use company-mode in all buffers, add the following line to your init file:
  7. (add-hook 'after-init-hook 'global-company-mode)
  8. (provide 'init-company)
  9. ;;; init-company.el ends here