$ git clone https://github.com/saidone75/emacs_config.git ~/.emacs.d
How to add packages:
- add package name to the list named
user-packages
contained inlisp/user-init-packages.el
;; set here the needed packages
(defvar user-packages '(clojure-mode
cider
...
zenburn-theme
))
- create (if needed) a new config file for the package named
lisp/user-init-$PACKAGE_NAME.el
(message "configuring $PACKAGE_NAME")
...
(provide 'user-init-$PACKAGE_NAME)
- load config file from
lisp/user-init.el
(require 'user-init-$PACKAGE_NAME)
Copyright (c) 2020-2022 Saidone
Distributed under the MIT License