add auto-complete to emacs

Installing auto-complete to emacs. It’s not loaded. Solution:

add the following text to ~/.emacs

;; auto-complete
(add-to-list ‘load-path “~/.emacs.d/”)
(require ‘auto-complete-config)
(add-to-list ‘ac-dictionary-directories “~/.emacs.d//ac-dict”)
(ac-config-default)-c

This entry was posted in Linux. Bookmark the permalink.

Leave a Reply

Your email address will not be published. Required fields are marked *