blob: 22c5161ca69ed378ec0c5c5c81fe4582dbcb4059 (
plain)
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 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)
|