Commit Diff


commit - e7c71b9bf2dd17f25b3f4faa6540dfc5c9c5d8b2
commit + fcedb9c453caf76dd404a759f4a24afd21ecee68
blob - 90da61f21993d746333d12bf60b60c88dd13f896
blob + 5f2d13a15d27eeba6e2228c8736a42e527d21de0
--- .emacs.d/init.el
+++ .emacs.d/init.el
@@ -1,4 +1,4 @@
-;;; Minimal init.el
+;; Minimal init.el
 
 ;;; Contents:
 ;;;
@@ -92,7 +92,7 @@ If the new path's directories does not exist, create t
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 
 ;; Show the help buffer after startup
-(add-hook 'after-init-hook 'help-quick)
+;(add-hook 'after-init-hook 'help-quick)
 
 ;; which-key: shows a popup of available keybindings when typing a long key
 ;; sequence (e.g. C-x ...)
@@ -114,7 +114,6 @@ If the new path's directories does not exist, create t
 (setopt completions-detailed t)                        ; Show annotations
 (setopt tab-always-indent 'complete)                   ; When I hit TAB, try to complete, otherwise, indent
 (setopt completion-styles '(basic initials substring)) ; Different styles to match input to candidates
-
 (setopt completion-auto-help 'always)                  ; Open completion always; `lazy' another option
 (setopt completions-max-height 20)                     ; This is arbitrary
 (setopt completions-format 'one-column)
@@ -157,7 +156,7 @@ If the new path's directories does not exist, create t
 ;; (setopt tab-width 4)
 
 ;; Misc. UI tweaks
-(blink-cursor-mode -1)                                ; Steady cursor
+(blink-cursor-mode -1)                                ; Blink cursor, -1 for steady
 (pixel-scroll-precision-mode)                         ; Smooth scrolling
 
 ;; Use common keystrokes by default