diff options
| author | bard <[email protected]> | 2024-04-08 16:16:14 -0400 |
|---|---|---|
| committer | bard <[email protected]> | 2024-04-08 16:16:14 -0400 |
| commit | f100d80040fce351b99ce6f2bfef0c41318eb75e (patch) | |
| tree | 08f0771f9c07174a09853d55e1bb3888d5b85973 | |
| parent | 913b7dece1c4770c66496c903ebac1431f8387c8 (diff) | |
initial commit
| -rw-r--r-- | early-init.el | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/early-init.el b/early-init.el new file mode 100644 index 0000000..107ca0f --- /dev/null +++ b/early-init.el @@ -0,0 +1,28 @@ +(setq inhibit-startup-message t) +(setq inhibit-startup-screen t) + +(setq frame-resize-pixelwise t + frame-inhibit-implied-resize t + frame-title-format '("%b") + use-dialog-box t ; only for mouse events, which I seldom use + use-file-dialog nil + use-short-answers t + inhibit-x-resources t + inhibit-startup-echo-area-message user-login-name + inhibit-startup-buffer-menu t) + +(setq mode-line-misc-info + (delete (assoc 'minor-mode-alist mode-line-misc-info) mode-line-misc-info)) + +;; Modes +(scroll-bar-mode -1) +(tool-bar-mode -1) +(tooltip-mode -1) +(set-fringe-mode 10) +(menu-bar-mode -1) +(tool-bar-mode 0) + +;; settings for windows +(setq focus-follows-mouse t) + +(add-hook 'after-init-hook (lambda () (set-frame-name "home"))) |
