diff options
| author | Christian Cunningham <cc@local.lan> | 2024-06-01 16:11:59 -0700 |
|---|---|---|
| committer | Christian Cunningham <cc@local.lan> | 2024-06-01 16:11:59 -0700 |
| commit | 97dfc6b1a27d46976e42949e394634ba07892a5c (patch) | |
| tree | 2c7ac2846dc0afd1092aded47be928cd10fbe7ef /elchemy-splash.el | |
| parent | 1f09c1321ef95661803a02b725db59d99725f9d8 (diff) | |
Rename Config
Diffstat (limited to 'elchemy-splash.el')
| -rw-r--r-- | elchemy-splash.el | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/elchemy-splash.el b/elchemy-splash.el new file mode 100644 index 0000000..dbc8fd0 --- /dev/null +++ b/elchemy-splash.el @@ -0,0 +1,11 @@ +(switch-to-buffer "*splash*") +(with-current-buffer "*splash*" + (let* ((message "Welcome to nEmacs") + (message-len (length message))) + (insert + (concat + (make-string (/ (- (window-total-width) message-len) 2) ? ) + message + "\n")))) + +(provide 'elchemy-splash) |
