diff options
author | Alan Pearce | 2020-08-26 14:03:07 +0200 |
---|---|---|
committer | Alan Pearce | 2020-08-26 14:03:50 +0200 |
commit | 9958179f026bf5e604d16c8b6188a95fd422de2a (patch) | |
tree | 494cefa8a269eec4ca8b645160e62f7a7460f1ea /user/emacs | |
parent | 3937dbd373054643862bed55e11280d2f34b6eeb (diff) | |
download | nixfiles-9958179f026bf5e604d16c8b6188a95fd422de2a.tar.lz nixfiles-9958179f026bf5e604d16c8b6188a95fd422de2a.tar.zst nixfiles-9958179f026bf5e604d16c8b6188a95fd422de2a.zip |
Emacs: move relevant config to early-init
Diffstat (limited to 'user/emacs')
-rw-r--r-- | user/emacs/early-init.el | 14 | ||||
-rw-r--r-- | user/emacs/init.el | 13 |
2 files changed, 14 insertions, 13 deletions
diff --git a/user/emacs/early-init.el b/user/emacs/early-init.el new file mode 100644 index 00000000..7d591550 --- /dev/null +++ b/user/emacs/early-init.el @@ -0,0 +1,14 @@ +(setq inhibit-startup-screen t + initial-scratch-message "" + initial-major-mode 'fundamental-mode + package-enable-at-startup nil + frame-inhibit-implied-resize t) + +;; Disable all the bars, unless on OSX, in which case, keep the menu bar. +(unless (eq system-type 'darwin) + (menu-bar-mode -1)) +(scroll-bar-mode -1) +(tool-bar-mode -1) +(set-fringe-mode '(4 . 4)) + +(defvar evil-want-keybinding nil) diff --git a/user/emacs/init.el b/user/emacs/init.el index d5396f75..053cecb4 100644 --- a/user/emacs/init.el +++ b/user/emacs/init.el @@ -1,12 +1,5 @@ ;;; init --- user init file -*- lexical-binding: t; -*- (setq inhibit-startup-echo-area-message "alan") -(setq inhibit-startup-screen t - initial-scratch-message "" - initial-major-mode 'fundamental-mode - package-enable-at-startup nil - evil-want-keybinding nil - frame-inhibit-implied-resize t) - (let ((default-gc-cons-threshold (* 16 1024 1024)) (default-file-name-handler-alist file-name-handler-alist)) (setq gc-cons-threshold most-positive-fixnum @@ -60,12 +53,6 @@ ;; I prefer an always-visible cursor. Feels less distracting. (blink-cursor-mode -1) -;; Disable all the bars, unless on OSX, in which case, keep the menu bar. -(unless (eq system-type 'darwin) - (menu-bar-mode -1)) -(scroll-bar-mode -1) -(tool-bar-mode -1) -(set-fringe-mode '(4 . 4)) ;; Ring the bell sometimes, but not so often (setq ring-bell-function |