From aba88c7c0513ac59a7641ad3e28172de7e4a029f Mon Sep 17 00:00:00 2001 From: Rutherther Date: Sat, 22 Jun 2024 16:45:02 +0200 Subject: [PATCH] chore: proper starting and ending comments in init.el files --- early-init.el | 6 +++++- init.el | 26 ++++---------------------- 2 files changed, 9 insertions(+), 23 deletions(-) diff --git a/early-init.el b/early-init.el index d2a230b..a726e55 100644 --- a/early-init.el +++ b/early-init.el @@ -1,3 +1,6 @@ +;;; early-init.el --- Early initialization file for Emacs +;;; Commentary: Early emacs Startup File --- initialization for Emacs + (eval-and-compile (setq load-prefer-newer t)) ;; ------------------------------------------------------------------------------------------ @@ -73,6 +76,7 @@ (blink-cursor-mode -1) (setq ring-bell-function #'ignore) -;; Early init this (setq custom-file (locate-user-emacs-file "custom.el")) (load custom-file 'noerror 'nomessage) + +;;; init.el ends here diff --git a/init.el b/init.el index 9af5633..b272480 100644 --- a/init.el +++ b/init.el @@ -1,25 +1,5 @@ -;; Lang configs -;; C, C++ -;; VHDL, Verilog -;; Latex + templates -;; Matlab -;; org -;; Multiple cursors (evil-mc?) -;; super-save? -;; https://github.com/svaante/dape - -;; eglot? - -;; dired compatability of a/b and tab -;; formatting etc for vhdl-ts - local leader - -;; debug vhdl lsp, what is the issue -;; how to speed it up? - -;; vhdl-ts -;; wrong indentation for new line, but it gets fixed afterwards? figure out - -;; flycheck errors jumping +;;; init.el --- Initialization file for Emacs +;;; Commentary: Emacs Startup File --- initialization for Emacs (add-to-list 'load-path (locate-user-emacs-file "lisp/")) (require 'custom-setup nil t) @@ -1124,3 +1104,5 @@ ;; (verilog-ext-mode-setup)) (setq warning-minimum-level :error) + +;;; init.el ends here -- 2.48.1