From 234c4e9ba7f2f3e482343fe66ccf61a79e790e05 Mon Sep 17 00:00:00 2001 From: Matt Kosarek Date: Mon, 29 Dec 2025 15:54:09 -0500 Subject: Adding 'custom' features to emacs --- .gitignore | 1 + README.md | 4 ++++ init.el | 1 + 3 files changed, 6 insertions(+) diff --git a/.gitignore b/.gitignore index 5bd9f96..d085ec6 100644 --- a/.gitignore +++ b/.gitignore @@ -26,3 +26,4 @@ session.* emojis multisession .aider* +lisp/user.el \ No newline at end of file diff --git a/README.md b/README.md index 8806a77..caf32bb 100644 --- a/README.md +++ b/README.md @@ -37,3 +37,7 @@ sudo apt install ripgrep gopls python3-pylsp clangd ## Org mode The configuration assumes that you have an `~/OrgRoam` folder and an `~/OrgRoam/daily` folder at the root of your home directory. + +## Custom +Users may specify custom functionality in `./lisp/user.el`. This will be +conditionally loaded if it is provided. diff --git a/init.el b/init.el index f5f22ac..31ef9dd 100644 --- a/init.el +++ b/init.el @@ -48,6 +48,7 @@ (require 'rust) (require 'mk) (require 'resize-frame) +(require 'user nil 'noerror) (require 'server) (unless (server-running-p) -- cgit v1.2.1