Blob


1 # early init
3 Starting from GNU Emacs 27 there is an additional configuration file
4 called `early-init.el'. As the name suggest, this is called *before*
5 the usual `init.el' or `.emacs'. There are some small tweaks we can
6 do here to improve startup performance and to declutter the `init.el'
8 (menu-bar-mode -1)
9 (tool-bar-mode -1)
10 (scroll-bar-mode -1)
11 (horizontal-scroll-bar-mode -1)
13 It's also a great place to tweak the `load-path'!
15 (add-to-list 'load-path
16 (expand-file-name "lisp" user-emacs-directory))
18 Another thing I do here is to load the theme. I've developed my own
19 theme (minimal-light, a fork of the original), but I'm playing with
20 modus now
22 (load-theme 'minimal t)
23 ;; (load-theme 'modus-operandi)
25 Also, $CDPATH works strange in eshell so disable it:
27 (setenv "CDPATH" nil)