diff options
author | Adrian Kummerlaender | 2020-12-17 09:31:04 +0100 |
---|---|---|
committer | Adrian Kummerlaender | 2020-12-17 09:31:04 +0100 |
commit | 348fec8c894cb4a737846432c5cb8fe165c2bb56 (patch) | |
tree | 895925f24918b4ce6d248fbbff7bf1794678213b /gui/conf | |
parent | d067a1933b19414e428df2d92de4ee99513772be (diff) | |
download | nixos_home-348fec8c894cb4a737846432c5cb8fe165c2bb56.tar nixos_home-348fec8c894cb4a737846432c5cb8fe165c2bb56.tar.gz nixos_home-348fec8c894cb4a737846432c5cb8fe165c2bb56.tar.bz2 nixos_home-348fec8c894cb4a737846432c5cb8fe165c2bb56.tar.lz nixos_home-348fec8c894cb4a737846432c5cb8fe165c2bb56.tar.xz nixos_home-348fec8c894cb4a737846432c5cb8fe165c2bb56.tar.zst nixos_home-348fec8c894cb4a737846432c5cb8fe165c2bb56.zip |
Load optional file of manual patches
Diffstat (limited to 'gui/conf')
-rw-r--r-- | gui/conf/init.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gui/conf/init.el b/gui/conf/init.el index 62e8efa..40b1b6f 100644 --- a/gui/conf/init.el +++ b/gui/conf/init.el @@ -557,3 +557,7 @@ (let ((mu4e-config "~/.emacs.d/email.el")) (when (file-exists-p mu4e-config) (load-file mu4e-config))) + +(let ((patches "~/.emacs.d/patches.el")) + (when (file-exists-p patches) + (load-file patches))) |