diff options
author | tdback <tyler@tdback.net> | 2025-02-08 10:10:55 -0500 |
---|---|---|
committer | tdback <tyler@tdback.net> | 2025-02-08 10:10:55 -0500 |
commit | f30132e4fe11fb7837d979887d9851e325643391 (patch) | |
tree | 61b7d2c2534e51a3ef8a4d4dba8a1dc770fffba3 /lisp/td-functions.el | |
parent | 5c590db7901f6e0f0a089bcf71401d6a4c9ba1d3 (diff) |
lisp: add general commentary
Diffstat (limited to 'lisp/td-functions.el')
-rw-r--r-- | lisp/td-functions.el | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/lisp/td-functions.el b/lisp/td-functions.el index 4475037..c7230d0 100644 --- a/lisp/td-functions.el +++ b/lisp/td-functions.el @@ -1,4 +1,6 @@ -;;; -*- lexical-binding: t; -*- +;;; td-functions --- custom elisp functions -*- lexical-binding: t; -*- + +;;; Code: (defun td/display-startup-time () (message (if (daemonp) @@ -13,15 +15,15 @@ (when (display-graphic-p) (message "Setting font...") (set-face-attribute 'default nil - :font "Iosevka Comfy Motion Fixed" + :font "Iosevka Comfy" :weight 'normal :height 200) (set-face-attribute 'fixed-pitch nil - :font "Iosevka Comfy Motion Fixed" + :font "Iosevka Comfy" :weight 'normal :height 200) (set-face-attribute 'variable-pitch nil - :font "Iosevka Comfy Motion Fixed" + :font "Iosevka Comfy" :weight 'normal :height 200))) @@ -62,3 +64,4 @@ (load-theme theme t))) (provide 'td-functions) +;;; td-functions.el ends here |