I often split my windows into two with C-x 2
. The window in the bottom tends to be the SLIME's REPL or Magit and the one at the top is usually the common lisp file being edited.
I like to have more space for the file to be edited. Thus, every time, I keep doing:
(i) - C-x 2
;
(ii) - Put the cursor on the window at the top (it is the default position);
(iii) - C-x ^
enlarges the window. In order to do it multiple times, I use C-u 7
to repeat it 7 times. Thus, I press C-u 7 C-x ^
Is there a way to automate this? Maybe adding a hook to my config files so that every time I press C-X 2
then C-u 7 C-x ^
happens?
C-x 2
). – Drew Aug 13 '21 at 04:22