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