emacs version 26.3 OSX 10.14.1
Following is my .init file. It is present at ~/.emacs.d
(require 'package)
(add-to-list 'package-archives
'("melpa" . "http://melpa.org/packages/") t)
(package-initialize)
(add-to-list 'load-path "~/.emacs.d/elpa/") ;; on may 01 2020
(require 'popup) ;; dependancy
(require 'auto-complete)
(setq backup-directory-alist `(("." . "~/.saves"))) ;; this work totally fine
In my home directory ~/.emacs.d/elpa
is present
How do I enable that auto-complete works?
I don't know if the path for elpa is being read although I've added it to the list.