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