25 lines
797 B
EmacsLisp
25 lines
797 B
EmacsLisp
;; Example Elpaca early-init.el -*- lexical-binding: t; -*-
|
|
|
|
(setq package-enable-at-startup nil)
|
|
|
|
(setq-default use-short-answers t)
|
|
|
|
(menu-bar-mode -1) ;; disables menubar
|
|
(tool-bar-mode -1) ;; disables toolbar
|
|
(scroll-bar-mode -1) ;; disables scrollbar
|
|
(pixel-scroll-precision-mode 1) ;; enable smooth scrolling
|
|
|
|
(setq inhibit-splash-screen t ;; no thanks
|
|
use-file-dialog nil ;; don't use system file dialog
|
|
tab-bar-new-button-show nil ;; don't show new tab button
|
|
tab-bar-close-button-show nil ;; don't show tab close button
|
|
tab-line-close-button-show nil) ;; don't show tab close button(setq inhibit-startup-screen t)
|
|
|
|
(setq confirm-kill-emacs #'yes-or-no-p)
|
|
|
|
;; Local Variables:
|
|
;; no-byte-compile: t
|
|
;; no-native-compile: t
|
|
;; no-update-autoloads: t
|
|
;; End:
|