This repository contains my personal Emacs configuration.
It is mainly focused on Org-mode and Org-roam functionality. It is structured for readability and modularity, and it is managed as a subdirectory of my larger dotfiles repo.
The repo lives at:
~/.emacs.d- Modular configuration (split across
lisp/andlisp/packages/). - Package management with use-package.
- Custom evil keybindings, Org-mode setup.
- Optimized for performance (GC tweaks, lazy loading).
- Theming and UI tweaks for a clean editing experience.
Clone the repo into your home directory:
git clone https://github.com/ashwinjadhav818/.emacs.d.git ~/.emacs.d.emacs.d/
├── init.el ;; Entry point
└── lisp/ ;; Modular config
├── config.el
├── packages.el
└── packages/
├── editing.el
├── git.el
├── keymaps.el
├── misc.el
├── org.el
├── programming.el
├── themes.el
└── ui.el
Start Emacs normally:
emacsOr use the daemon + client setup:
emacs --daemon
emacsclient -c- Emacs Kick
- Emacs Kick is the backbone of this config: a lightweight starter kit that provided the initial structure and package setup on which I built my own config.
- Doom Emacs
- Source of inspiration for modular organization, performance tweaks, and keybinding ideas.


