aboutsummaryrefslogtreecommitdiff
path: root/early-init.el
diff options
context:
space:
mode:
Diffstat (limited to 'early-init.el')
-rw-r--r--early-init.el85
1 files changed, 0 insertions, 85 deletions
diff --git a/early-init.el b/early-init.el
index 33b2a4d..4e5c463 100644
--- a/early-init.el
+++ b/early-init.el
@@ -41,58 +41,6 @@
;; Silence stupid startup message
(setq inhibit-startup-echo-area-message (user-login-name))
-;; Show the help buffer after startup
-(add-hook 'after-init-hook 'help-quick)
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;;;
-;;; Minibuffer/completion settings
-;;;
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-
-;; For help, see: https://www.masteringemacs.org/article/understanding-minibuffer-completion
-
-(setq enable-recursive-minibuffers t) ; Use the minibuffer whilst in the minibuffer
-(setq completion-cycle-threshold 1) ; TAB cycles candidates
-(setq completions-detailed t) ; Show annotations
-(setq tab-always-indent 'complete) ; When I hit TAB, try to complete, otherwise, indent
-
-(fido-vertical-mode) ; Show completion candidates in a vertical, interactive list
-(setq completion-styles '(basic initials substring)) ; Different styles to match input to candidates
-(define-key minibuffer-mode-map (kbd "TAB") 'minibuffer-complete) ; TAB acts more like how it does in the shell
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;;;
-;;; Interface enhancements/defaults
-;;;
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-
-;; Mode line information
-(setq line-number-mode t)
-(setq column-number-mode t)
-
-(setq x-underline-at-descent-line nil) ; Prettier underlines
-(setq frame-resize-pixelwise t)
-(setq switch-to-buffer-obey-display-actions t)
-
-(setq-default show-trailing-whitespace nil)
-(setq-default indicate-buffer-boundaries 'left)
-
-;; Enable horizontal scrolling
-(setq mouse-wheel-tilt-scroll t)
-(setq mouse-wheel-flip-direction t)
-
-;; We won't set these, but they're good to know about
-;;
-;; (setq-default indent-tabs-mode nil)
-;; (setq-default tab-width 4)
-
-;; Misc. UI tweaks
-(blink-cursor-mode -1)
-(tool-bar-mode -1)
-(pixel-scroll-precision-mode)
-(global-hl-line-mode)
-
;; Default frame configuration: full screen, good-looking title bar on macOS
(setq default-frame-alist '((fullscreen . maximized)
(vertical-scroll-bars . nil)
@@ -100,36 +48,3 @@
(ns-appearance . dark)
(ns-transparent-titlebar . t)
(alpha-background . 50)))
-
-;; Display line numbers in programming mode
-(add-hook 'prog-mode-hook 'display-line-numbers-mode)
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;;;
-;;; Tab-bar configuration
-;;;
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-
-;; Show the tab-bar as soon as tab-bar functions are invoked
-(setq tab-bar-show 0)
-
-;; Add the time to the tab-bar, if visible
-(add-to-list 'tab-bar-format 'tab-bar-format-align-right 'append)
-(add-to-list 'tab-bar-format 'tab-bar-format-global 'append)
-(setq display-time-format "%a %F %T")
-(setq display-time-interval 1)
-(display-time-mode)
-
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;;;
-;;; Theme
-;;;
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-
-;; We just use the built-in high contrast theme modus-vivendi
-(load-theme 'modus-vivendi)
-
-;; If you like light-mode themes instead, use this:
-
-;(load-theme 'modus-operandi)