summaryrefslogtreecommitdiffstats
path: root/init.el
diff options
context:
space:
mode:
authorMatthew Lemon <matt@matthewlemon.com>2022-11-20 19:08:41 +0000
committerMatthew Lemon <matt@matthewlemon.com>2022-11-20 19:08:41 +0000
commitc98e9a1656137157f212bd4bf38726835ca2dbe2 (patch)
treecbe77aa0c08a14867c93fc868b37cdcf7cbc9b2a /init.el
parent591f62b2ea58fb93035355033c0591c6de4a2e09 (diff)
added some comments
Diffstat (limited to '')
-rw-r--r--init.el6
1 files changed, 5 insertions, 1 deletions
diff --git a/init.el b/init.el
index 983b640..da1ec8f 100644
--- a/init.el
+++ b/init.el
@@ -53,21 +53,23 @@
;; turn off flycheck-mode
(add-hook 'org-mode-hook (lambda () flycheck-mode -1))
+;; ID basics
(setq user-full-name "Matthew Lemon"
user-mail-address "matt@matthewlemon.com")
+;; redundant function
(defun establish-machine ()
(let ((sys (system-name)))
(if (string= sys "archdesk")
(setq mrl/computer 'desktop)
(setq mrl/computer 'laptop))))
-
(establish-machine)
;; handier undo
(global-unset-key "\C-z")
(global-set-key "\C-z" 'advertised-undo)
+;; UI
(setq inhibit-startup-message 1)
(scroll-bar-mode -1)
(tool-bar-mode -1)
@@ -111,6 +113,7 @@
;; Display the current time
(display-time-mode t)
+;; Simply has to be done
(setq visible-bell t)
;; font
@@ -122,6 +125,7 @@
(when (member "Hack" (font-family-list))
(add-to-list 'default-frame-alist '(font . "Hack-10")))))
+;; theme
(use-package gruber-darker-theme
:ensure t
:config