Emacs auto-complete-mode at startup

前端 未结 2 1670
情话喂你
情话喂你 2020-12-13 04:29

I just install auto-complete-mode, however everytime I start emacs I have to M-x auto-complete-mode. Is there anyway to have it loaded automatically ?

My .emacs is a

2条回答
  •  一向
    一向 (楼主)
    2020-12-13 04:51

    I just needed this:

    (require 'auto-complete)
    (global-auto-complete-mode t)
    

    added to my .emacs.d/init.el file.

    I installed auto-complete with the package manager. I'm using Emacs 24.

提交回复
热议问题