aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--LICENSE2
-rw-r--r--common/.config/emacs/init.el.org3
2 files changed, 3 insertions, 2 deletions
diff --git a/LICENSE b/LICENSE
index 3dff7ce..73cd236 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright 2024 Jacob Janzen
+Copyright 2024 j. janzen
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
diff --git a/common/.config/emacs/init.el.org b/common/.config/emacs/init.el.org
index 4d56977..7f81564 100644
--- a/common/.config/emacs/init.el.org
+++ b/common/.config/emacs/init.el.org
@@ -69,10 +69,11 @@ Colourful delimiters with =rainbow-delimiters=.
(prog-mode . rainbow-delimiters-mode))
#+end_src
-Tell Emacs to show line numbers and column numbers by default.
+Tell Emacs to show line numbers, column numbers, and the time by default.
#+begin_src emacs-lisp
(global-display-line-numbers-mode 1)
(column-number-mode 1)
+ (display-time-mode)
#+end_src
Configure Emacs to default to spaces over tabs and use a width of 4 by default.