You can clone this repository with git.
Below command will add develop branch of Spacemacs repository into .emacs.d/spacemacs.
git clone https://github.com/hackartists/.emacs.d.git $HOME/.emacs.dappsdirectory includes hackartist applications. And each application defines layers, packages and osc (open source code).layersmeans a name of an spacemacs layer.packagesmeans a name of an additional packages to prevent removing orphan packages fromspacemacs.oscmeans an open source code libraries which will be cloned at the first launch time.
hackartist/is a prefix for all additional applications.init,config,bindingswill be called byhackartist coreat loaded.layerslist must indicate layers defined inspacemacs.packageslist can describes your customized packages unlisted inspacemacs.osclist make your emacs more powerful by cloning user repositories you need.- All of open source libraries will be cloned into
path-to-emacs-home/libs
- All of open source libraries will be cloned into
(setq hackartist-example-layers '(go))
(setq hackartist-example-packages '(govet))
(setq hackartist-example-osc '("https://github.com/example/lib.git"))
(defun hackartist/example/init ())
(defun hackartist/example/config ())
(defun hackartist/example/bindings ())