$ git clone <git remote url> .emacs.dThis configuration uses setting/profile.el for user-specific preferences and optional module activation. This file is ignored by Git, allowing you to keep local configurations without affecting the main repository.
Create a directory named setting and a file named profile.el inside it:
$ mkdir setting
$ touch setting/profile.elIn profile.el, you can load specific language modules or override settings. For example, to enable Clojure, Python, and TypeScript support:
;;; -*- lexical-binding: t; -*-
(load "_clj.el")
(load "_py.el")
(load "_ts.el")
(load "_js.el")
(load "_vterm.el")All available modules are located in the mod/ subdirectories. Since these directories are already added to the load-path, you only need to provide the filename.