spacemacs

Spacemacs docs: http://develop.spacemacs.org/doc/DOCUMENTATION.html http://develop.spacemacs.org/layers/+lang/clojure/README.html https://practicalli.github.io/spacemacs/
2021-07-05T20:21:34.024Z

Are their any good tutorials on how to include functionality from a .el file such as https://github.com/dakra/datomic.el/blob/master/datomic.el my google searches are failing so far.

2021-07-05T20:21:56.024300Z

https://gist.github.com/TheBB/367096660b203952c162 looks promising

2021-07-05T20:30:36.024700Z

probably in my .spacemacs file

2021-07-05T20:44:11.027900Z

i'm suprised there isn't a convention. so i need to update my path to include a folder and put my lib there. I can't use .emacs because thats under source control. Though i guess a file could be gitignored.

practicalli-john 2021-07-05T20:45:25.029600Z

If it's self contained code, then add it to the dotspacemacs/user-config section. Or create a private Spacemacs package containing the .el file.

2021-07-05T20:46:14.030300Z

Adding it to the user-config would mean copying the entire .el file into it?

practicalli-john 2021-07-05T20:47:51.031600Z

Yes, its a lot of code too, so a private package would be the recommended approach

practicalli-john 2021-07-05T20:53:39.033900Z

It doesn't look like it's a normal Emacs package, otherwise it could just be added via dotspacemacs/additional-packages in .spacemacs

👍 1
2021-07-05T21:03:48.034500Z

thanks ill take a read, might be more trouble then its worth.