about summary refs log tree commit diff stats
path: root/config.org
diff options
context:
space:
mode:
authorCase Duckworth2021-01-27 12:42:54 -0600
committerCase Duckworth2021-01-27 12:42:54 -0600
commit7e5d69706968852a2db4596407804f1bb4bbacac (patch)
treebd69d5af248f9eb734d0476c349b9c98538a26e4 /config.org
parentMake results of evaluating code blocks silent (diff)
downloademacs-7e5d69706968852a2db4596407804f1bb4bbacac.tar.gz
emacs-7e5d69706968852a2db4596407804f1bb4bbacac.zip
Hide the default modeline and show window dividers
Diffstat (limited to 'config.org')
-rw-r--r--config.org20
1 files changed, 20 insertions, 0 deletions
diff --git a/config.org b/config.org index b98ce2b..d0ca5f4 100644 --- a/config.org +++ b/config.org
@@ -80,6 +80,26 @@ want it to resize by pixels -- we /are/ using a GUI, after all.
80 frame-resize-pixelwise t) 80 frame-resize-pixelwise t)
81#+end_src 81#+end_src
82 82
83**** Don't show default modeline
84
85Wait until my *fancy* modeline is loaded -- from [[https://github.com/KaratasFurkan/.emacs.d#remove-redundant-ui][Furkan Karataş]].
86
87#+begin_src emacs-lisp :noweb-ref settings
88 (setq-default mode-line-format nil)
89#+end_src
90
91**** Window Dividers
92
93#+begin_src emacs-lisp :noweb-ref settings
94 (setq-default window-divider-default-places t ; bottom and right
95 window-divider-default-bottom-width 2
96 window-divider-default-right-width 2)
97#+end_src
98
99#+begin_src emacs-lisp :noweb-ref modes
100 (window-divider-mode +1)
101#+end_src
102
83*** Frame titles 103*** Frame titles
84 104
85#+begin_src emacs-lisp :noweb-ref settings 105#+begin_src emacs-lisp :noweb-ref settings