all repos — nixfiles @ 55bc4ae0d6c404fb7deb9b6c2120a7726f6ce725

System and user configuration, managed by nix and home-manager

user/emacs/early-init.el (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
(setq inhibit-startup-screen t
      initial-scratch-message ""
      initial-major-mode 'fundamental-mode
      package-quickstart t
      frame-inhibit-implied-resize t)

;; Disable all the bars, unless on macOS, in which case, keep the menu bar.
(unless (eq window-system 'ns)
  (menu-bar-mode -1))
(scroll-bar-mode -1)
(tool-bar-mode -1)
(set-fringe-mode '(4 . 4))

(defvar evil-want-keybinding nil)