about summary refs log tree commit diff stats
path: root/config.org
diff options
context:
space:
mode:
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