diff options
| -rw-r--r-- | early-init.el | 5 | ||||
| -rw-r--r-- | init.el | 37 | 
2 files changed, 29 insertions, 13 deletions
| diff --git a/early-init.el b/early-init.el index 4e5c463..080e37d 100644 --- a/early-init.el +++ b/early-init.el @@ -42,9 +42,14 @@  (setq inhibit-startup-echo-area-message (user-login-name))  ;; Default frame configuration: full screen, good-looking title bar on macOS +(setq frame-resize-pixelwise t) +(tool-bar-mode -1)                      ; No gross icons  (setq default-frame-alist '((fullscreen . maximized)                              (vertical-scroll-bars . nil)                              (horizontal-scroll-bars . nil)                              (ns-appearance . dark)                              (ns-transparent-titlebar . t)                              (alpha-background . 50))) + +(set-face-background 'default "#000000") +(set-face-foreground 'default "#cccccc") @@ -22,7 +22,8 @@  ;; Show the help buffer after startup  (add-hook 'after-init-hook 'help-quick) -;; which-key: shows a popup of available keybindings +;; which-key: shows a popup of available keybindings when typing a long key +;; sequence (e.g. C-x ...)  (use-package which-key    :ensure t    :config @@ -52,15 +53,14 @@  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;  ;; Mode line information -(setq line-number-mode t) -(setq column-number-mode t) +(setq line-number-mode t)                                        ; Show current line in modeline +(setq column-number-mode t)                                      ; Show column as well  (setq x-underline-at-descent-line nil)                           ; Prettier underlines -(setq frame-resize-pixelwise t) -(setq switch-to-buffer-obey-display-actions t) +(setq switch-to-buffer-obey-display-actions t)                   ; Make switching buffers more consistent -(setq-default show-trailing-whitespace nil) -(setq-default indicate-buffer-boundaries 'left) +(setq-default show-trailing-whitespace nil)                      ; By default, don't underline trailing spaces +(setq-default indicate-buffer-boundaries 'left)                  ; Show icons showing the size of the buffer in the margin  ;; Enable horizontal scrolling  (setq mouse-wheel-tilt-scroll t) @@ -72,13 +72,12 @@  ;; (setq-default tab-width 4)  ;; Misc. UI tweaks -(blink-cursor-mode -1) -(tool-bar-mode -1) -(pixel-scroll-precision-mode) -(global-hl-line-mode) +(blink-cursor-mode -1)                                           ; Steady cursor +(pixel-scroll-precision-mode)                                    ; Smooth scrolling +(global-hl-line-mode)                                            ; Highlight the current line  ;; Display line numbers in programming mode -(add-hook 'prog-mode-hook 'display-line-numbers-mode) +(add-hook 'prog-mode-hook 'display-line-numbers-mode)            ; If programming, show line numbers  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;  ;;; @@ -106,7 +105,6 @@  (load-theme 'modus-vivendi)  ;; If you like light-mode themes instead, use this: -  ;(load-theme 'modus-operandi)  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; @@ -128,3 +126,16 @@  ;;;   Built-in customization framework  ;;;  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; + +(custom-set-variables + ;; custom-set-variables was added by Custom. + ;; If you edit it by hand, you could mess it up, so be careful. + ;; Your init file should contain only one such instance. + ;; If there is more than one, they won't work right. + '(package-selected-packages '(which-key))) +(custom-set-faces + ;; custom-set-faces was added by Custom. + ;; If you edit it by hand, you could mess it up, so be careful. + ;; Your init file should contain only one such instance. + ;; If there is more than one, they won't work right. + ) | 
