Emacs personal configuration
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

14 行
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