diff options
Diffstat (limited to 'nix/users')
| -rw-r--r-- | nix/users/fcuny/configs/emacs/early-init.el | 8 | ||||
| -rw-r--r-- | nix/users/fcuny/configs/emacs/init.el | 10 |
2 files changed, 18 insertions, 0 deletions
diff --git a/nix/users/fcuny/configs/emacs/early-init.el b/nix/users/fcuny/configs/emacs/early-init.el index 55c8728..2bcbca5 100644 --- a/nix/users/fcuny/configs/emacs/early-init.el +++ b/nix/users/fcuny/configs/emacs/early-init.el @@ -1,3 +1,9 @@ +;;; early-init.el --- Early initialization -*- lexical-binding: t -*- + +;;; Commentary: + +;;; Code: + ;; Startup speed, annoyance suppression (setq gc-cons-threshold 10000000) (setq byte-compile-warnings '(not obsolete)) @@ -19,3 +25,5 @@ (ns-transparent-titlebar . t))) (set-face-attribute 'default nil :family "Source Code Pro" :height 150) + +;;; early-init.el ends here diff --git a/nix/users/fcuny/configs/emacs/init.el b/nix/users/fcuny/configs/emacs/init.el index 914fd82..1611e6c 100644 --- a/nix/users/fcuny/configs/emacs/init.el +++ b/nix/users/fcuny/configs/emacs/init.el @@ -1,3 +1,9 @@ +;;; init.el --- This is where all emacs start. -*- lexical-binding: t -*- + +;;; Commentary: + +;;; Code: + (defconst emacs-start-time (current-time)) (defun report-time-since-load () @@ -469,3 +475,7 @@ :init (add-to-list 'completion-at-point-functions #'yasnippet-capf)) (report-time-since-load) + +;;; early-init.el ends here +;; byte-compile-warnings: (not docstrings lexical noruntime) +;; End: |
