summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorCase Duckworth2021-02-16 14:41:33 -0600
committerCase Duckworth2021-02-16 14:43:03 -0600
commite4f6714c1af2148e59133c0b688b6d950b3a028e (patch)
tree90774714e73d322b5398e9521899090e70de8ce5
parentAdd coding to {early-,}init.el (diff)
downloademacs-e4f6714c1af2148e59133c0b688b6d950b3a028e.tar.gz
emacs-e4f6714c1af2148e59133c0b688b6d950b3a028e.zip
Don't hide default modeline
-rw-r--r--config.org8
-rw-r--r--early-init.el2
-rw-r--r--init.el2
3 files changed, 2 insertions, 10 deletions
diff --git a/config.org b/config.org index 51a2496..15f4f1e 100644 --- a/config.org +++ b/config.org
@@ -81,14 +81,6 @@ want it to resize by pixels -- we /are/ using a GUI, after all.
81 frame-resize-pixelwise t) 81 frame-resize-pixelwise t)
82#+end_src 82#+end_src
83 83
84**** Don't show default modeline
85
86Wait until my *fancy* modeline is loaded -- from [[https://github.com/KaratasFurkan/.emacs.d#remove-redundant-ui][Furkan Karataş]].
87
88#+begin_src emacs-lisp :noweb-ref settings
89 (setq-default mode-line-format nil)
90#+end_src
91
92*** Frame titles 84*** Frame titles
93 85
94#+begin_src emacs-lisp :noweb-ref settings 86#+begin_src emacs-lisp :noweb-ref settings
diff --git a/early-init.el b/early-init.el index b208092..0738ca2 100644 --- a/early-init.el +++ b/early-init.el
@@ -1,4 +1,4 @@
1;;; early-init.el -*- no-byte-compile: t; -*- 1;;; early-init.el -*- no-byte-compile: t; coding: utf-8 -*-
2;; Copyright (C) 2020 Case Duckworth 2;; Copyright (C) 2020 Case Duckworth
3 3
4;; Author: Case Duckworth <acdw@acdw.net> 4;; Author: Case Duckworth <acdw@acdw.net>
diff --git a/init.el b/init.el index 405bf9b..4741a4f 100644 --- a/init.el +++ b/init.el
@@ -1,4 +1,4 @@
1;;; init.el -*- lexical-binding: t -*- 1;;; init.el -*- lexical-binding: t; coding: utf-8 -*-
2;; Copyright (C) 2020 Case Duckworth 2;; Copyright (C) 2020 Case Duckworth
3 3
4;; Author: Case Duckworth <acdw@acdw.net> 4;; Author: Case Duckworth <acdw@acdw.net>