mirror of
https://codeberg.org/scip/dot-emacs.git
synced 2025-12-17 04:20:57 +01:00
remove distractions right from the start
This commit is contained in:
15
init.el
15
init.el
@@ -5,7 +5,19 @@
|
||||
;; I'm using an outdated config somewhere.
|
||||
(defvar tvd-emacs-version "20230412.01")
|
||||
|
||||
;; from purcell's config
|
||||
;; I prefer a bare bones emacs window without any distractions, so turn them off.
|
||||
(menu-bar-mode -1)
|
||||
(tool-bar-mode -1)
|
||||
(setq use-dialog-box nil)
|
||||
(scroll-bar-mode 0)
|
||||
|
||||
;;; ** stay silent on startup
|
||||
(setq initial-scratch-message "")
|
||||
(setq inhibit-startup-message t)
|
||||
(setq inhibit-startup-screen t)
|
||||
(setq inhibit-startup-echo-area-message "scip")
|
||||
|
||||
;; from purcell's config, used below
|
||||
(defun sanityinc/add-subdirs-to-load-path (parent-dir)
|
||||
"Add every non-hidden subdir of PARENT-DIR to `load-path'."
|
||||
(let ((default-directory parent-dir))
|
||||
@@ -70,7 +82,6 @@
|
||||
|
||||
|
||||
|
||||
|
||||
;; ** mode-line setup (must be the last mode)
|
||||
|
||||
;; I just append the current version of my emacs config and leave out
|
||||
|
||||
Reference in New Issue
Block a user