Commit b3e2c33643d9

Vincent Demeester <vincent@sbr.pm>
2020-02-17 13:01:09
windows/buffers: reduce right side window size ๐Ÿ˜‰
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent 008f7e9
Changed files (2)
lisp/setup-buffers.el
@@ -59,17 +59,17 @@
           ;; right side window
           ("\\*wclock*"
            (display-buffer-in-side-window)
-           (window-width . 0.333)
+           (window-width . 0.20)
            (side . right)
            (slot . -1))
           ("\\*undo-tree*"
            (display-buffer-in-side-window)
-           (window-width . 0.333)
+           (window-width . 0.20)
            (side . right)
            (slot . -1))
           ("\\*\\(Flycheck\\|Package-Lint\\).*"
            (display-buffer-in-side-window)
-           (window-width . 0.333)
+           (window-width . 0.20)
            (side . right)
            (slot . 0)
            (window-parameters . ((no-other-window . t)
@@ -77,7 +77,7 @@
                                                       mode-line-buffer-identification)))))
           ("\\*Faces\\*"
            (display-buffer-in-side-window)
-           (window-width . 0.333)
+           (window-width . 0.20)
            (side . right)
            (slot . 1)
            (window-parameters . ((no-other-window . t)
@@ -85,7 +85,7 @@
                                                       mode-line-buffer-identification)))))
           ("\\*Custom.*"
            (display-buffer-in-side-window)
-           (window-width . 0.333)
+           (window-width . 0.20)
            (side . right)
            (slot . 2))))
   :bind (("<f7>" . window-toggle-side-windows)))
emacs.org
@@ -49,6 +49,15 @@
 generate any additional file I need, whatever the programming language they are written
 in.
 
+** Why using GNU/Emacs ?
+:PROPERTIES:
+:CUSTOM_ID: h:955013f3-91b9-4d8a-889f-959aa30991e6
+:END:
+
+This is a question I thought I needed to answer, or at least, document why I am choosing
+GNU/Emacs as my primary editor. [[https://protesilaos.com/][Protesilaos Stavrou]] has a [[https://protesilaos.com/codelog/2019-12-20-vlog-switch-emacs/][video]] about it, really
+interesting.
+
 ** Assumptions
 :PROPERTIES:
 :CUSTOM_ID: h:751e2708-4a84-49c4-9b1c-04439beed96d
@@ -1000,17 +1009,17 @@
           ;; right side window
           ("\\*wclock*"
            (display-buffer-in-side-window)
-           (window-width . 0.333)
+           (window-width . 0.20)
            (side . right)
            (slot . -1))
           ("\\*undo-tree*"
            (display-buffer-in-side-window)
-           (window-width . 0.333)
+           (window-width . 0.20)
            (side . right)
            (slot . -1))
           ("\\*\\(Flycheck\\|Package-Lint\\).*"
            (display-buffer-in-side-window)
-           (window-width . 0.333)
+           (window-width . 0.20)
            (side . right)
            (slot . 0)
            (window-parameters . ((no-other-window . t)
@@ -1018,7 +1027,7 @@
                                                       mode-line-buffer-identification)))))
           ("\\*Faces\\*"
            (display-buffer-in-side-window)
-           (window-width . 0.333)
+           (window-width . 0.20)
            (side . right)
            (slot . 1)
            (window-parameters . ((no-other-window . t)
@@ -1026,7 +1035,7 @@
                                                       mode-line-buffer-identification)))))
           ("\\*Custom.*"
            (display-buffer-in-side-window)
-           (window-width . 0.333)
+           (window-width . 0.20)
            (side . right)
            (slot . 2))))
   :bind (("<f7>" . window-toggle-side-windows)))