From d1ca1d88683f9c360ae83904573295782d1a8116 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Fri, 27 Dec 2019 09:24:08 -0800 Subject: emacs: magit buffer in full frame With a bigger font, on a 13" laptop, I want magit to be full frame, I don't want anything splitted. Move a couple of other settings to the `:custom` section of `use-package`. --- emacs.d/custom/fcuny-git.el | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'emacs.d/custom') diff --git a/emacs.d/custom/fcuny-git.el b/emacs.d/custom/fcuny-git.el index 27a409f..68a5ecf 100644 --- a/emacs.d/custom/fcuny-git.el +++ b/emacs.d/custom/fcuny-git.el @@ -9,9 +9,11 @@ :after (flyspell) :hook ((magit-mode . hl-line-mode)) :bind (("C-x g s" . magit-status)) + :custom + (git-commit-summary-max-length 50) + (fill-column 72) + (magit-display-buffer-function #'magit-display-buffer-fullframe-status-v1) :config - (setq git-commit-summary-max-length 50) - (setq fill-column 72) (when (fcuny/check-work-machine-p) (setq magit-git-executable "/opt/twitter_mde/bin/git"))) -- cgit 1.4.1