home

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit d35c1f447ce219c61b6df5ef4e6b4e3e2b41a58b
parent 1859216084cb80bd56c23e63ef7e7261d764bb30
Author: Vincent Demeester <vincent@sbr.pm>
Date:   Thu,  9 Apr 2020 12:38:10 +0200

init.el: add some comments 😛

Signed-off-by: Vincent Demeester <vincent@sbr.pm>

Diffstat:
Mtools/emacs/init.el | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git a/tools/emacs/init.el b/tools/emacs/init.el @@ -1,4 +1,7 @@ ;;; init.el --- -*- lexical-binding: t -*- +;;; Commentary: +;;; init configuration file for GNU Emacs +;;; Code: ;; +CheckVer (let ((minver 26)) (unless (>= emacs-major-version minver) @@ -193,3 +196,5 @@ (message "Loading %s...done (%.3fs) [after-init]" ,load-file-name elapsed))) t) ;; -LastInit + +;;; init.el ends here